The following shell script will, after a five second delay, save a screenshot every second for the next minute:
sleep 5
for f in $(jot 60)
do
screencapture -wC $(date +%Y%m%d%H%M%).png
sleep 1
echo $f
done
work as if you live in the early days of a better nation
The following shell script will, after a five second delay, save a screenshot every second for the next minute:
sleep 5
for f in $(jot 60)
do
screencapture -wC $(date +%Y%m%d%H%M%).png
sleep 1
echo $f
done