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