Created
February 13, 2015 04:43
-
-
Save aculich/fdd6d79b0f57da7ae07e to your computer and use it in GitHub Desktop.
ring a bell 3 (by default) or more times
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| times=${1-3} | |
| for i in `seq $times`; do echo -e "\a"; sleep 0.3; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment