home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / ease-3.5 / debug / showwhere < prev    next >
Encoding:
Text File  |  1991-02-26  |  207 b   |  15 lines

  1. #!/bin/sh 
  2. # Written By Bruce Barnett
  3. while :
  4. do
  5.     read username
  6. #    echo i just read in  $username
  7.     if [ $? -eq 0 ]
  8.     then
  9.         x="`./showhow $username`"
  10.             echo $username  $x | tr ' ' '    '
  11.     else
  12.         exit 0
  13.     fi
  14. done
  15.