mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 20:15:34 +02:00
Add Calibre ebook library tools.
This commit is contained in:
parent
2b70e7ca14
commit
ddec789485
3 changed files with 49 additions and 0 deletions
17
pages/common/calibre-server.md
Normal file
17
pages/common/calibre-server.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# calibre-server
|
||||
|
||||
> A server application that can be used to distribute ebooks over a network.
|
||||
> Ebooks must be imported into the library using the GUI or calibredb before.
|
||||
> Part of the Calibre ebook library.
|
||||
|
||||
- Start a server to distribute ebooks. Access at http://localhost:8080
|
||||
|
||||
`calibre-server`
|
||||
|
||||
- Start server on different port. Access at http://localhost:port
|
||||
|
||||
`calibre-server --port {{port}}`
|
||||
|
||||
- Password protect the server.
|
||||
|
||||
`calibre-server --username {{username}} --password {{password}}`
|
24
pages/common/calibredb.md
Normal file
24
pages/common/calibredb.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# calibredb
|
||||
|
||||
> Tool to manipulate the your ebook database.
|
||||
> Part of the Calibre ebook library.
|
||||
|
||||
- List ebooks in the library with additional information.
|
||||
|
||||
`calibredb list`
|
||||
|
||||
- Search for ebooks displaying additional information.
|
||||
|
||||
`calibredb list --search {{search term}}`
|
||||
|
||||
- Search for just ids of ebooks.
|
||||
|
||||
`calibredb search {{search term}}
|
||||
|
||||
- Add one or more ebooks to the library.
|
||||
|
||||
`calibredb add {{file1, file2, …}}`
|
||||
|
||||
- Remove one or more ebooks from the library. You need ebook-ids (see above)
|
||||
|
||||
`calibredb remove {{id1, id2, …}}`
|
8
pages/common/ebook-convert.md
Normal file
8
pages/common/ebook-convert.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# ebook-convert
|
||||
|
||||
> Can be used to convert ebooks between common formats, e.g., pdf, epub and mobi.
|
||||
> Part of the Calibre ebook library tool.
|
||||
|
||||
- Convert an ebook into another format.
|
||||
|
||||
`ebook-convert {{source}} {{destination}}
|
Loading…
Add table
Reference in a new issue