Skip to content

Instantly share code, notes, and snippets.

@aculich
Created February 13, 2015 04:43
Show Gist options
  • Select an option

  • Save aculich/fdd6d79b0f57da7ae07e to your computer and use it in GitHub Desktop.

Select an option

Save aculich/fdd6d79b0f57da7ae07e to your computer and use it in GitHub Desktop.
ring a bell 3 (by default) or more times
#!/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