#!/bin/bash URL="https://git.sp-codes.de/samuel-p/awesome-scripts/raw/branch/master/" for script in "$@"; do echo "Downloading $script" curl "$URL$script" >"$script" chmod +x "$script" done