calibre-debug - calibre-debug
Various command line interfaces useful for debugging calibre. With
no options, this command starts an embedded Python interpreter. You can also
run the main calibre GUI, the calibre E-book viewer and the calibre editor
in debug mode.
It also contains interfaces to various bits of calibre that do not
have dedicated command line tools, such as font subsetting, the E-book diff
tool and so on.
You can also use calibre-debug to run standalone scripts.
To do that use it like this:
calibre-debug -e myscript.py --
--option1 --option2 file1 file2 ...
Everything after the -- is passed to the script. You can
also use calibre-debug as a shebang in scripts, like this:
#!/usr/bin/env -S calibre-debug -e --
--
スペースを含む引数を
calibre-debug
に渡す場合には、クォーテーションマークでくくってください。例:
"/some path/with spaces"
- --diff
- 差分ツールを実行。例:
calibre-debug --diff file1 file2
- --explode-book,
-x
- 指定されたディレクトリに本を分解。
使用例: -x file.epub output_dir
本をHTMLファイルと書誌のまとまりとしてエクスポートし、標準的なHTML編集ツールで編集できるようにします。EPUB,
AZW3, HTMLZ, DOCX
に利用可能です。
- --export-all-calibre-data
- Export all calibre data (books/settings/plugins). Normally, you will be
asked for the export folder and the libraries to export. You can also
specify them as command line arguments to skip the questions. Use absolute
paths for the export folder and libraries. The special keyword
"all" can be used to export all libraries.
Examples: calibre-debug --export-all-calibre-data # for interactive
use calibre-debug --export-all-calibre-data
/path/to/empty/export/folder /path/to/library/folder1 /path/to/library2
calibre-debug --export-all-calibre-data /export/folder all # export
all known libraries
- --gui, -g
- GUIをデバッグモードで実行。デバッグの出力はstdoutとstderrに出力されます。
- --gui-debug
- デバッグコンソールでGUIを実行し、指定されたpathにログを記録。内部での使用に限定し、GUIをデバッグモードで実行するには
-g
オプションを使用してください。
- --implode-book,
-i
- 分解された本を連結。
使用例: -i output_dir file.epub :option:
`
--explode-book`により分割されたファイルの置かれた
output_dir
を読み込んで連結し、本にします。必ず分割したときと同じファイルタイプを指定してください。
- --run-plugin, -r
- コマンドラインインタフェースを提供するプラグインを実行。例:
calibre-debug -r "Plugin name" -- file1
--option1 --
以降にあるものは、すべてプラグインに引数として渡されます。
- --run-test,
-t
- Run the named test(s). Use the special value "all"
to run all tests. If the test name starts with a period it is assumed to
be a module name. If the test name starts with @ it is assumed to be a
category name.