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
2020-05-21 01:59:34 +02:00

11 lines
282 B
Bash

#!/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
echo "Downloading $script"
curl "$URL$script" >"$script"
chmod +x "$script"
done