Search found 1 match
- Wed Jun 30, 2010 8:17 am
- Forum: User Contributions
- Topic: Send yourself an email of an avi of events every 24 hrs.
- Replies: 0
- Views: 1806
Send yourself an email of an avi of events every 24 hrs.
I wrote this so i could get an email with the last 24hrs of events in one avi file, i suck at code but this works for me and thought it maybe useful to others. #!/bin/bash #Get last 24hrs of jpgs from zm events find /var/www/html/zm/events/1/ *.jpg -ctime -1 -exec cp --parent {} /some/temp/folder ...