blob: 2a2ef622cfadf17e46a11b21ccc5ecfa31df5215 (
plain) (
tree)
|
|
#!/bin/sh
# check out https://github.com/chubin/awesome-console-services
if [ "$#" -ne 1 ] ; then
echo "Please provide a single URL parameter to shorten."
exit 1
fi
result=$(curl -s tinyurl.com/api-create.php?url="$1")
echo "$result"
|