mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
6 lines
235 B
Bash
Executable File
6 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
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
|