Skip to content

Instantly share code, notes, and snippets.

@zhanglongqi
Created September 15, 2017 05:30
Show Gist options
  • Save zhanglongqi/547ac14e2359148e9e7da9dbe847a66b to your computer and use it in GitHub Desktop.
Save zhanglongqi/547ac14e2359148e9e7da9dbe847a66b to your computer and use it in GitHub Desktop.
beep in mac, show dialog in mac
#!/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