Skip to content

Instantly share code, notes, and snippets.

@matthewberryman
Created June 30, 2015 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewberryman/04fd06d107f2bb7544ca to your computer and use it in GitHub Desktop.
Save matthewberryman/04fd06d107f2bb7544ca to your computer and use it in GitHub Desktop.
print the date second by second
#!/usr/bin/env bash
while true;
do
echo `date`
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment