Skip to content

Instantly share code, notes, and snippets.

@omiq
Last active April 2, 2018 23:35
Show Gist options
  • Save omiq/69f7b9a2f3c90a82673723ff2f44ac3e to your computer and use it in GitHub Desktop.
Save omiq/69f7b9a2f3c90a82673723ff2f44ac3e to your computer and use it in GitHub Desktop.
Very simple BASH webcam script
#!/bin/bash
while [ 1 ];
do
raspistill -o cam.jpg
scp cam.jpg chrisg@example.com:apache/html/cam
sleep 5s
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment