Skip to content

Instantly share code, notes, and snippets.

@Leedehai
Created April 26, 2018 08:02
Show Gist options
  • Save Leedehai/e94ced0fb6a487396e364f4814577928 to your computer and use it in GitHub Desktop.
Save Leedehai/e94ced0fb6a487396e364f4814577928 to your computer and use it in GitHub Desktop.
Shell command line to display incrementing dots (should not be in a script)
'while true; do sleep 0.5; echo -en "\r. "; sleep 0.5; echo -en "\r.. "; sleep 0.5; echo -en "\r... "; sleep 0.5; echo -en "\r "; done' # should not be in a shell script
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment