/ Published in: Bash
script to upload websites from a file into archive.is.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/bash for i in $(cat URLs.txt); do content="$(curl -i -d url="$i" http://archive.is/submit/)" echo "$content" >> OUTPUT.txt done
URL: http://pastebin.com/1iup0qfL