Wiktor Zykubek 5dcb6fd7b7 Changes in 'gethub' script
Automatic made file executable when it have shebang.
2020-05-14 21:59:54 +02:00

14 lines
328 B
Bash
Executable File

#!/bin/sh
# Autistic script for convert GitHub links into
# links to raw files and download it via wget.
echo "$1" | sed '
s/github.com/raw.githubusercontent.com/g;
s/blob//g
' | xargs -r wget
filename="$(echo "$1" | sed 's/.*\///g')"
[ "$(sed 's/#\!\/.*/bang/g; 1q' "$filename")" = "bang" ] && chmod +x "$filename"