Skip to content

Instantly share code, notes, and snippets.

@utgwkk
Created October 7, 2016 07:49
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 utgwkk/8c8200ffe04fc500676b9549cc163aaf to your computer and use it in GitHub Desktop.
Save utgwkk/8c8200ffe04fc500676b9549cc163aaf to your computer and use it in GitHub Desktop.
カウントダウンする sleep
#!/bin/sh
countdown () {
sec=$1
while [ $sec -ge 0 ]; do
echo -ne "Waiting for $sec seconds...\033[0K\r"
let "sec = sec - 1"
sleep 1
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment