7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#only call if script is there
|
|
command -v /home/aiden/sync-config.sh >/dev/null || exit 0
|
|
|
|
exec /home/aiden/sync-config.sh
|