Skip to content

Instantly share code, notes, and snippets.

@Viper-7
Created July 25, 2018 11:16
Show Gist options
  • Save Viper-7/8d79230c93073bc6acdbc15e12338d45 to your computer and use it in GitHub Desktop.
Save Viper-7/8d79230c93073bc6acdbc15e12338d45 to your computer and use it in GitHub Desktop.
#!/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