Renamed to .sh suffix

This commit is contained in:
Markus Fleschutz
2021-02-06 16:26:14 +01:00
parent 55898acd4e
commit d6333d50ba
4 changed files with 0 additions and 0 deletions

12
Scripts/calibre-server.sh Executable file
View File

@ -0,0 +1,12 @@
#!/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