home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.orig.lzh / relay / aux / sendnews < prev   
Text File  |  1989-06-27  |  221b  |  11 lines

  1. #! /bin/sh
  2. # sendnews destination... - protect & mail article on stdin to destinations
  3. PATH=/bin:/usr/bin; export PATH
  4.  
  5. case $# in
  6. 0)
  7.     echo "usage: $0 destination..." >&2
  8.     exit 1 ;;
  9. esac
  10. (echo ''; sed 's/^/N/') | mail $*
  11.