Skip to content

Instantly share code, notes, and snippets.

@ibanezmatt13
Created August 27, 2013 09:16
Show Gist options
  • Save ibanezmatt13/6351426 to your computer and use it in GitHub Desktop.
Save ibanezmatt13/6351426 to your computer and use it in GitHub Desktop.
#!/bin/bash
while [ 1 ]; do # do forever
{
raspistill -o images/image/`date +%H%M%S`+'.jpg'
sleep 30 # delay for one second
}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment