Guest User

archive.is bash script

a guest
Feb 20th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. for i in $(cat URLs.txt); do
  4.     content="$(curl -i -d url="$i" http://archive.is/submit/)"
  5.     echo "$content" >> OUTPUT.txt
  6. done
Add Comment
Please, Sign In to add comment