#!/bin/csh -f # Ring the bell to alert the user that dataset is done set bell_num = 3 set bell_length = 1 set i=0 while ($i < $bell_num) set j=0 while ($j < $bell_length) /usr/bin/echo '\a\c' @ j++ end @ i++ sleep 1 end