Created
September 15, 2017 05:30
-
-
Save zhanglongqi/547ac14e2359148e9e7da9dbe847a66b to your computer and use it in GitHub Desktop.
beep in mac, show dialog in mac
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 | |
i="0" | |
while [ $i -lt 10000 ] | |
do | |
# osascript -e 'tell app "System Events" to display dialog "Dear Researchs: This is the first warning. Please stop playing games in the lab. \n IGS"' | |
# afplay /System/Library/Sounds/Basso.aiff | |
# say "b" | |
# echo -e "\a" | |
# tput bel | |
# osascript -e "beep" | |
echo $i | |
sleep 1 | |
i=$[$i+1] | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment