Skip to content

Instantly share code, notes, and snippets.

@aliva
Created September 15, 2015 18:44
Show Gist options
  • Save aliva/35712c42a32f2f56e9a0 to your computer and use it in GitHub Desktop.
Save aliva/35712c42a32f2f56e9a0 to your computer and use it in GitHub Desktop.
while :
do
t=`date +%S`
echo $t
if [[ $(($t % 10)) == 0 ]]
then
break
fi
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment