Created
July 19, 2016 08:12
-
-
Save balasankarc/6a78e92cc1866ce9d7ec0cedd20f344a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
archiver () { | |
name=$1 | |
original=$2 | |
result=$(curl "http://web.archive.org/save/"$original | grep "var redirUrl" | awk '{print $4}' | sed -e 's/";//g' | sed -e 's/"/http:\/\/web.archive.org/g') | |
echo "[$name]($original),[Archived]($result)" | |
} | |
alias archiveit=archiver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment