This repository has been archived on 2023-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
awesome-scripts/setup.sh

9 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