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