home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / CNEWS / _CNEWS.TAR / usr / lib / newsbin / inject / lines < prev    next >
Encoding:
Text File  |  1994-09-02  |  314 b   |  13 lines

  1. sed -e '/^Lines:/d' $inhdrs # emit the headers, minus any previous Lines: header
  2.  
  3. # generate Lines: header
  4. lines="`
  5. (sed 1d $inbody;        # take out the first (blank) line
  6.  if test -r $HOME/.signature; then
  7.     echo '-- '
  8.     sed 4q $HOME/.signature
  9.  fi) | wc -l `"
  10. echo Lines: $lines
  11.  
  12. cat $inbody            # emit the article body
  13.