### Install IntelliReading CLI from Source Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Instructions to clone the repository, navigate to the directory, and install the package using pip. ```console > git clone https://go.hugobatista.com/gh/intellireading-cli.git > cd intellireading-cli > pip install . ``` -------------------------------- ### Get IntelliReading CLI Help Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Demonstrates how to view the general help message for the IntelliReading CLI and specific help for a command like 'metaguide-epub'. ```console > intellireading --help ``` ```console > intellireading metaguide-epub --help ``` -------------------------------- ### Install Intellireading CLI and View Help Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md This command shows how to install the Intellireading CLI tool using pip and then how to access its help documentation to understand available commands and options. ```Console > pip install intellireading-cli > intellireading --help ``` -------------------------------- ### Metaguide all files in a directory Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to metaguide all supported files (EPUB, XHTML, HTML) within a specified directory, outputting to another directory. ```console > intellireading metaguide-dir --input_dir mydir --output_dir mydir_metaguided ``` -------------------------------- ### Metaguide an EPUB file Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to metaguide a single EPUB file, specifying input and output file paths. ```console > intellireading metaguide-epub --input_file mybook.epub --output_file mybook_metaguided.epub ``` -------------------------------- ### Metaguide EPUB File with Intellireading CLI Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md This command-line instruction demonstrates how to use the Intellireading CLI to metaguide an EPUB file. It takes an input EPUB file and outputs a new EPUB file with metaguiding applied. ```Console > intellireading metaguide-epub --input_file mybook.epub --output_file mybook_metaguided.epub ``` -------------------------------- ### Metaguide EPUB file using Docker (Windows) Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to metaguide an EPUB file using Docker on Windows, mounting a local directory for input and output. ```powershell > docker run -it --rm -v ${pwd}/tests:/tests ghcr.io/0x6f677548/intellireading-cli metaguide-epub --input_file '/tests/test_files/input.epub' --output_file '/tests/test_files/output.epub' ``` -------------------------------- ### Metaguide a XHTML file Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to metaguide a single XHTML file, specifying input and output file paths. ```console > intellireading metaguide-xhtml --input_file mybook.xhtml --output_file mybook_metaguided.xhtml ``` -------------------------------- ### Metaguide EPUB file using Docker (Linux/MacOS) Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to metaguide an EPUB file using Docker on Linux or MacOS, mounting a local directory for input and output. ```linux > docker run -it --rm -v $(pwd)/tests:/tests ghcr.io/0x6f677548/intellireading-cli metaguide-epub --input_file '/tests/test_files/input.epub' --output_file '/tests/test_files/output.epub' ``` -------------------------------- ### Run IntelliReading CLI with Docker Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Shows how to pull the latest Docker image and run the CLI with the --help command. ```console > docker pull ghcr.io/0x6f677548/intellireading-cli:latest > docker run -it --rm ghcr.io/0x6f677548/intellireading-cli --help ``` -------------------------------- ### Remove metaguiding from all files in a directory Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to remove metaguiding from all supported files within a directory using the --remove_metaguiding flag, specifying input and output directories. ```console > intellireading metaguide-dir --remove_metaguiding --input_dir mydir_metaguided --output_dir mydir ``` -------------------------------- ### Remove metaguiding from an EPUB file Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to remove metaguiding from an EPUB file using the --remove_metaguiding flag, specifying input and output file paths. ```console > intellireading metaguide-epub --remove_metaguiding --input_file mybook_metaguided.epub --output_file mybook.epub ``` -------------------------------- ### Remove metaguiding from a XHTML file Source: https://github.com/0x6f677548/intellireading-cli/blob/main/README.md Command to remove metaguiding from a XHTML file using the --remove_metaguiding flag, specifying input and output file paths. ```console > intellireading metaguide-xhtml --remove_metaguiding --input_file mybook_metaguided.xhtml --output_file mybook.xhtml ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.