Advertisement
Guest User

dlbocken

a guest
Dec 18th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. #!/bin/bash
  2. while true; do
  3.         # --quiet: don't show stats
  4.         # -p: get required files for site to load
  5.         # -nc: don't download files that exist
  6.         wget --quiet -p -nc http://bocken.gavle.se/kamera/
  7.         date=$( date +%s )
  8.         # mv so that wget -nc still download the picture
  9.         sudo mv bocken.gavle.se/kamera/bocken.jpg saved/bocken$date.jpg
  10.         sleep 2
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement