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

10 lines
198 B
Bash

#!/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