1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/calibredb.md

30 lines
757 B
Markdown
Raw Normal View History

2015-11-21 13:06:10 +01:00
# calibredb
> Manipulate an e-book database.
> Part of the Calibre e-book library.
> More information: <https://manual.calibre-ebook.com/generated/en/calibredb.html>.
2015-11-21 13:06:10 +01:00
- List e-books in the library with additional information:
2015-11-21 13:06:10 +01:00
`calibredb list`
- Search for e-books displaying additional information:
2015-11-21 13:06:10 +01:00
`calibredb list --search {{search_term}}`
2015-11-21 13:06:10 +01:00
- Search for just ids of e-books:
2015-11-21 13:06:10 +01:00
`calibredb search {{search_term}}`
2015-11-21 13:06:10 +01:00
- Add one or more e-books to the library:
2015-11-21 13:06:10 +01:00
`calibredb add {{path/to/file1 path/to/file2 ...}}`
2015-11-21 13:06:10 +01:00
- [r]ecursively add all e-books under a directory to the library:
2020-02-17 10:30:04 +08:00
`calibredb add {{-r|--recurse}} {{path/to/directory}}`
2020-02-17 10:30:04 +08:00
- Remove one or more e-books from the library. You need the e-book IDs (see above):
2015-11-21 13:06:10 +01:00
`calibredb remove {{id1 id2 ...}}`