home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / conf / notinlist < prev    next >
Text File  |  1989-12-29  |  90b  |  11 lines

  1. #! /bin/sh
  2. for f in $1
  3. do
  4.     if test " $f" = " $2"
  5.     then
  6.         echo no
  7.         exit
  8.     fi
  9. done
  10. echo yes
  11.