Created
October 23, 2017 06:34
-
-
Save tennisonchan/768619fe56f555ea64d6a98e67b8fa6f to your computer and use it in GitHub Desktop.
This file contains hidden or 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/sh | |
INTERVAL=2 | |
if [ -n $2 ] | |
then | |
INTERVAL=$2 | |
fi | |
while :; | |
do | |
clear | |
date | |
$1 | |
sleep $INTERVAL | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment