Provided by: calibre_6.3.0+dfsg-2_all bug

NAME

       calibre-debug - calibre-debug

          calibre-debug [options]

       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 -- --

       Whenever  you  pass  arguments  to  calibre-debug  that  have  spaces in them, enclose the
       arguments in quotation marks. For example: "/some path/with spaces"

[옵션]

       --add-simple-plugin
              플러그인 코드가 담긴 py  파일에  대한  경로를  지정해서,  간단한  플러그인(즉,  .py
              파일로만 구성된 플러그인)을 추가합니다.

       --command, -c
              Python 코드를 실행합니다.

       --debug-device-driver, -d
              장치 감지 디버그

       --default-programs
              캘리버를   Windows   기본   프로그램에   등록/제거   합니다.  --default-programs  =
              (register|unregister)

       --diff 캘리버의 diff 도구를 실행합니다. 예: calibre-debug --diff 파일1 파일2

       --edit-book
              캘리버 책편집기 도구를 디버그 모드로 띄웁니다.

       --exec-file, -e
              파일의 Python 코드를 실행합니다.

       --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.

       --fix-multiprocessing
              For internal use

       --gui, -g
              디버깅이   활성화된  상태로  GUI를  실행합니다.  디버그  출력은  stdout과  stderr로
              프린트됩니다.

       --gui-debug
              지정되 경로에 로그를  남기며,  GUI를  디버그  콘솔과  함께  실행합니다.  내부  용도
              한정으로, 디버그 모드로 GUI를 띄우려면 -g 옵션을 사용하세요.

       --help, -h
              이 도움말 메시지를 표시한 후 종료

       --implode-book, -i
              Implode a previously exploded book. Usage: -i output_dir file.epub Imports the book
              from the files in output_dir which must have been created by  a  previous  call  to
              --explode-book. Be sure to specify the same file type as was used when exploding.

       --import-calibre-data
              이전에 내보낸 캘리버 데이터 가져오기

       --inspect-mobi, -m
              지정된 경로의 MOBI 파일을 검사합니다.

       --paths
              캘리버 환경을 설정하는데 필요한 경로들을 출력합니다.

       --run-plugin, -r
              Run  a plugin that provides a command line interface. For example: calibre-debug -r
              "Plugin name" -- file1 --option1 Everything after the --  will  be  passed  to  the
              plugin as arguments.

       --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.

       --run-without-debug
              Don't run with the DEBUG flag set

       --shutdown-running-calibre, -s
              실행  중인  캘리버  인스턴스가  있다면  종료시킵니다.  만일 실행 중인 작업이 있다면
              조용히 처리가 중단되니 조심해서 사용하도록 하십시오.

       --subset-font, -f
              지정된 글꼴에서 실제 사용된 문자만  취합니다.  Font  subsetting  프로그램에  옵션을
              전달하려면 이 옵션 다음에 -- 를 사용하세요.

       --test-build
              빌드 시 바이너리 모듈을 검사합니다.

       --version
              프로그램의 버전을 표시한 후 종료합니다.

       --viewer, -w
              전자책 뷰어를 디버그 모드로 실행합니다.

AUTHOR

       Kovid Goyal

COPYRIGHT

       Kovid Goyal