Skip to content

Instantly share code, notes, and snippets.

@trukhinyuri
Last active December 14, 2015 17:39
Show Gist options
  • Select an option

  • Save trukhinyuri/5123677 to your computer and use it in GitHub Desktop.

Select an option

Save trukhinyuri/5123677 to your computer and use it in GitHub Desktop.
continuous digital clock in linux terminal
watch -t -n 1 date +%T
or
while [ 1 ] ; do echo -en "$(date +%T)\r" ; sleep 1; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment