dotfiles: leviathan: arch-openbox-20231010
This commit is contained in:
87
.local/bin/gitio
Executable file
87
.local/bin/gitio
Executable file
@ -0,0 +1,87 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# ██ ██ ██
|
||||
# █████ ░░ ░██ ░░
|
||||
# ██░░░██ ██ ██████ ██ ██████
|
||||
# ░██ ░██░██░░░██░ ░██ ██░░░░██
|
||||
# ░░██████░██ ░██ ░██░██ ░██
|
||||
# ░░░░░██░██ ░██ ░██░██ ░██
|
||||
# █████ ░██ ░░██ ██░██░░██████
|
||||
# ░░░░░ ░░ ░░ ░░ ░░ ░░░░░░
|
||||
#
|
||||
# create short / vanity github urls
|
||||
# ▟▙
|
||||
# ▟▒░░░░░░░▜▙▜████████████████████████████████▛
|
||||
# ▜▒░░░░░░░▟▛▟▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▛
|
||||
# ▜▛
|
||||
# xero / syntax-samurai <http://git.io/gitio.sh>
|
||||
|
||||
usage () {
|
||||
cat <<EOF
|
||||
|
||||
▟▙
|
||||
▟▒░░░░░░░▜▙▜████████████████████████████████▛
|
||||
▜▒░░░░░░░▟▛▟▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▛
|
||||
▜▛
|
||||
|
||||
create short / vanity github urls
|
||||
usage: $(basename $0) http://github.com/something [-v mini]
|
||||
|
||||
options:
|
||||
-v shortlink
|
||||
-h display this screen
|
||||
EOF
|
||||
exit 0
|
||||
}
|
||||
|
||||
err() {
|
||||
echo $1
|
||||
usage
|
||||
}
|
||||
|
||||
optstest() {
|
||||
found=0
|
||||
for arg in "$@"
|
||||
do
|
||||
if echo $arg | awk -F '/' '$3 !~ /github.com|github.io|githubusercontent.com/ { exit 1 }'
|
||||
then
|
||||
GHURL=$arg
|
||||
found=1
|
||||
elif [ $arg = "-h" ]
|
||||
then
|
||||
usage
|
||||
elif [ $arg = "-v" ]
|
||||
then
|
||||
:
|
||||
else
|
||||
VANITY=$arg
|
||||
fi
|
||||
done
|
||||
if [ $found = 0 ]
|
||||
then
|
||||
err " must be a valid github.com url!"
|
||||
fi
|
||||
}
|
||||
|
||||
case $# in
|
||||
1)
|
||||
optstest $1 ;;
|
||||
3)
|
||||
optstest $1 $2 $3 ;;
|
||||
*)
|
||||
err " invalid number of arguments!" ;;
|
||||
esac
|
||||
|
||||
if [ -z "$VANITY" ]
|
||||
then
|
||||
url=`curl -is https://git.io -F "url=$GHURL" | awk '/Location:/ { print $2 }'`
|
||||
else
|
||||
url=`curl -is https://git.io -F "url=$GHURL" -F "code=$VANITY" | awk '/Location:/ { print $2 }'`
|
||||
fi
|
||||
|
||||
if [ -z $url ]
|
||||
then
|
||||
err " must be a valid github.com url!"
|
||||
else
|
||||
echo $url
|
||||
fi
|
Reference in New Issue
Block a user