From ddec7894853983278e96154d8970a2097594414f Mon Sep 17 00:00:00 2001 From: 85pando <85pando@googlemail.com> Date: Sat, 21 Nov 2015 13:06:10 +0100 Subject: [PATCH] Add Calibre ebook library tools. --- pages/common/calibre-server.md | 17 +++++++++++++++++ pages/common/calibredb.md | 24 ++++++++++++++++++++++++ pages/common/ebook-convert.md | 8 ++++++++ 3 files changed, 49 insertions(+) create mode 100644 pages/common/calibre-server.md create mode 100644 pages/common/calibredb.md create mode 100644 pages/common/ebook-convert.md diff --git a/pages/common/calibre-server.md b/pages/common/calibre-server.md new file mode 100644 index 0000000000..60391d9871 --- /dev/null +++ b/pages/common/calibre-server.md @@ -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}}` diff --git a/pages/common/calibredb.md b/pages/common/calibredb.md new file mode 100644 index 0000000000..c38b6f96f2 --- /dev/null +++ b/pages/common/calibredb.md @@ -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, …}}` diff --git a/pages/common/ebook-convert.md b/pages/common/ebook-convert.md new file mode 100644 index 0000000000..9dfd264441 --- /dev/null +++ b/pages/common/ebook-convert.md @@ -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}}