6 lines
159 B
Bash
6 lines
159 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
which rclone &>/dev/null || { echo "[!] rclone not installed"; exit 0; }
|
||
|
|
|
||
|
|
test -d /mnt/models || { echo "[!] /mnt/models does not exist"; exit 0; }
|