Skip to content

Instantly share code, notes, and snippets.

@aeakett
Forked from atomotic/Readme.md
Created July 3, 2014 23:30
Show Gist options
  • Save aeakett/dd33187d4f7f4c8eb81f to your computer and use it in GitHub Desktop.
Save aeakett/dd33187d4f7f4c8eb81f to your computer and use it in GitHub Desktop.

save a page to internetarchive wayback from shell

put the function in your .zshrc or .bashrc and then

~  ia-save http://twitter.com/atomotic
https://web.archive.org/web/20140702123925/http://twitter.com/atomotic
function ia-save() { curl -s -I https://web.archive.org/save/$* | grep Content-Location | awk '{print "https://web.archive.org"$2}' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment