home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / CNEWS / _CNEWS.TAR / usr / lib / newsbin / relay / sendnews < prev    next >
Encoding:
Text File  |  1994-09-02  |  221 b   |  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.