Last active
September 23, 2019 19:40
-
-
Save kwart/e18a4f727297f16dd9ec8d6dc80afad9 to your computer and use it in GitHub Desktop.
LInux - take the screenshot every 30 seconds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while scrot '/tmp/scr-%Y%m%d-%H%M%S.png' -q 20; do | |
sleep 30 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment