Guest User

Untitled

a guest
Oct 24th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #Simple bash script to take screenshots
  2. #!/bin/bash
  3. file="/path/urls.txt"
  4. while IFS= read line
  5. do
  6. echo "$line"
  7. firefox -screenshot "$line".png "$line" &>/dev/null
  8. done < "$file"
Add Comment
Please, Sign In to add comment