Skip to content

Instantly share code, notes, and snippets.

@tennisonchan
Created October 23, 2017 06:34
Show Gist options
  • Save tennisonchan/768619fe56f555ea64d6a98e67b8fa6f to your computer and use it in GitHub Desktop.
Save tennisonchan/768619fe56f555ea64d6a98e67b8fa6f to your computer and use it in GitHub Desktop.
#!/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