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
Raw Normal View History

2020-05-20 23:57:45 +00:00
#!/bin/bash
URL="https://git.sp-codes.de/samuel-p/awesome-scripts/raw/branch/master/"
2020-06-15 15:33:04 +00:00
for script in "$@"; do
2020-05-20 23:59:34 +00:00
echo "Downloading $script"
2020-05-20 23:57:45 +00:00
curl "$URL$script" >"$script"
chmod +x "$script"
done