This repository has been archived on 2023-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
awesome-scripts/setup.sh

11 lines
282 B
Bash
Raw Normal View History

2020-05-20 23:57:45 +00:00
#!/bin/bash
URL="https://git.sp-codes.de/samuel-p/awesome-scripts/raw/branch/master/"
SCRIPTS=("healthcheck.sh" "login-notify.sh" "validate-remote-backup.sh")
for script in "${SCRIPTS[@]}"; do
2020-05-20 23:59:34 +00:00
echo "Downloading $script"
2020-05-20 23:57:45 +00:00
curl "$URL$script" >"$script"
chmod +x "$script"
done