mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
18 lines
157 B
Bash
18 lines
157 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
case "$1" in
|
||
|
start)
|
||
|
start
|
||
|
;;
|
||
|
stop)
|
||
|
stop
|
||
|
;;
|
||
|
status)
|
||
|
status
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 start|stop|status" >&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|