Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danbeam/981786 to your computer and use it in GitHub Desktop.
Save danbeam/981786 to your computer and use it in GitHub Desktop.
untinyurl.sh
untiny() {
for U in $*; do
curl -I $U 2>/dev/null | grep ^Location | cut -d' ' -f2;
done;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment