Merge pull request #326 from 85pando/calibre

Add Calibre (calibredb, calibre-server, ebook-convert)
waldyrious/alt-syntax
Igor Shubovych 2015-11-24 16:03:31 +02:00
commit e486167eae
4 changed files with 50 additions and 1 deletions

View 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
View 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 …}}`

View 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