#!/bin/bash #Beep forever #Handy if you have long compiliations and you want to know when they #are done: #Example: make >make.out 2>&1 ; beep-forever.sh #or if long running process is already running: # CTRL-Z (interrupt current process) # fg; beep-forever.sh while /bin/true; do echo -ne \\a sleep 1 done