Skip to content

Instantly share code, notes, and snippets.

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 carry0987/aa43632aee5a4e720284aff6ff83a25d to your computer and use it in GitHub Desktop.
Save carry0987/aa43632aee5a4e720284aff6ff83a25d to your computer and use it in GitHub Desktop.
sleep-with-countdown() {
secs=$1
while [ $secs -gt 0 ]; do
printf "\rsleep: $secs\033[0K"
sleep 1
: $((secs--))
done
printf "\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment