Skip to content

Instantly share code, notes, and snippets.

@jaymzcd
Created February 3, 2012 13:59
Show Gist options
  • Save jaymzcd/1730291 to your computer and use it in GitHub Desktop.
Save jaymzcd/1730291 to your computer and use it in GitHub Desktop.
resolve a list of 301'ing links to a file
while read line;
do curl -Is $line | egrep "Location" | awk -F": " '{print $2}' >> urls-resolved.txt;
done < urls-2.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment