1
0
Fork 0
mirror of synced 2024-05-25 11:31:14 -04:00
zimfw/modules/git/functions/git-hub-shorten-url

23 lines
368 B
Plaintext
Raw Normal View History

2015-12-15 00:12:17 -05:00
#
# Shortens GitHub URLs.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
local url="$1"
if [[ "$url" == '-' ]]; then
read url <&0
fi
if [[ -z "$url" ]]; then
print "usage: $0 [ url | - ]" >&2
fi
if (( $+commands[curl] )); then
curl -s -i 'http://git.io' -F "url=$url" | sed -n 's/^Location: //p'
else
print "$0: command not found: curl" >&2
fi