#! /bin/csh -f # # Filename: beep # # This C shell program sleeps for a bit, beeps, and repeats over and over. # CTRL z can be used to stop this process. Then use the kill command to # eliminate it, as in: # kill %n (replace n with the job number shown by the jobs command) # while (1) # infinite loop sleep 8; echo -n "" end