9 lines
198 B
Bash
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
|