mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 09:17:57 +01:00
Merge pull request #326 from 85pando/calibre
Add Calibre (calibredb, calibre-server, ebook-convert)
This commit is contained in:
commit
e486167eae
4 changed files with 50 additions and 1 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}}`
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue