PowerShell/Scripts/calibre-server.sh
2021-02-06 16:26:14 +01:00

13 lines
393 B
Bash
Executable File

#!/bin/sh
# Syntax: ./calibre-server
# Description: starts a Calibre server
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
echo "Starting Calibre Server ..."
calibre-server --port 8099 --num-per-page 100 --userdb $HOME/CalibreUsers.sqlite --log $HOME/CalibreServer.log --daemonize $HOME/'Calibre Library'
echo "OK - Calibre Server started."
exit 0