Created
July 25, 2018 11:16
-
-
Save Viper-7/8d79230c93073bc6acdbc15e12338d45 to your computer and use it in GitHub Desktop.
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 | |
for x in {1..5} | |
do | |
for i in {100..5000..100} | |
do | |
beep -f $i -l 50 | |
done | |
for i in {5000..100..-100} | |
do | |
beep -f $i -l 50 | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment