All pastes #2050327 Raw Edit

shorting url

public shellscript v1 · immutable
#2050327 ·published 2011-04-25 04:59 UTC
rendered paste body
#!/bin/bash# shorting url with kon.tl site# howto :# $ ./kon.sh http://google.com cobakon# Your New Short URL: http://kon.tl/cobakon# thank's to jim geovedi for the idea (https://github.com/geovedi/kontl)curl -s -d "url=$1&tag=$2" http://kon.tl/create.php > indexlink=`cat index | grep -i New | awk -F "=" '{print $2}' | sed 's/target//'`echo "Your Long URL: $1"echo "Your New Short URL: $link"rm index