Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tbaschak
Created August 13, 2014 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tbaschak/1d32970cb0a56c21310c to your computer and use it in GitHub Desktop.
Save tbaschak/1d32970cb0a56c21310c to your computer and use it in GitHub Desktop.
#!/bin/bash
function usage ()
{
echo "Usage:";echo " $0 <url>"
}
if [ $# -ne 1 ]; then
usage;exit 127
fi
curl -s -o /dev/null --head -w "%{url_effective}\n" -L "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment