mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-14 05:15:03 -05:00
23 lines
169 B
Bash
23 lines
169 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
exit 0
|
||
|
;;
|
||
|
|
||
|
stop)
|
||
|
exit 0
|
||
|
;;
|
||
|
|
||
|
restart)
|
||
|
$0 stop
|
||
|
$0 start
|
||
|
;;
|
||
|
|
||
|
*)
|
||
|
echo "Usage: $0 {start|stop|restart}"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit 0
|