archive.is bash script


/ Published in: Bash
Save to your folder(s)

script to upload websites from a file into archive.is.


Copy this code and paste it in your HTML
  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

URL: http://pastebin.com/1iup0qfL

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.