home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 12 / Silicon_Graphics_Developer_Magic_Soft_Dev_812-8101-012.iso / .all / bin / showmess < prev    next >
Encoding:
Text File  |  1995-11-09  |  427 b   |  23 lines

  1. #!/bin/sh
  2.  
  3. # Get the time
  4. timesecs="$1"
  5.  
  6. # Make sure the arguments look right
  7. if [ $# -lt "3" -o "$timesecs" -le 0 ]; then
  8.     echo "usage: showmess timesecs xconfirm-messages"
  9.     if [ "$timesecs" -le 0 ]; then
  10.         echo "the timesecs parameter must be a positive number!"
  11.     fi
  12.     exit 1
  13. fi
  14.  
  15. # Shift away the time
  16. shift
  17.  
  18. # Post the xconfirm
  19. xconfirm "$@" >/dev/null 2>&1 &
  20. procid="$!"
  21.  
  22. (sleep $timesecs; kill -9 $procid 2>&1) > /dev/null
  23.