home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / lib / trn / mbox.sav < prev    next >
Encoding:
Text File  |  1992-05-10  |  1.3 KB  |  40 lines

  1. #!/bin/sh
  2. # $Id: mbox.saver.SH,v 4.4 1991/09/09 20:23:31 sob Exp sob $
  3. # $Log: mbox.saver.SH,v $
  4. # Revision 4.4  1991/09/09  20:23:31  sob
  5. # release 4.4
  6. #
  7. # This software is Copyright 1991 by Stan Barber. 
  8. #
  9. # Permission is hereby granted to copy, reproduce, redistribute or otherwise
  10. # use this software as long as: there is no monetary profit gained
  11. # specifically from the use or reproduction of this software, it is not
  12. # sold, rented, traded or otherwise marketed, and this copyright notice is
  13. # included prominently in any copy made. 
  14. #
  15. # The author make no claims as to the fitness or correctness of this software
  16. # for any use whatsoever, and it is provided as is. Any use of this software
  17. # is at the user's own risk. 
  18. #    Arguments:
  19. #    1 Full name of article (%A)
  20. #    2 Public news spool directory (%P)
  21. #    3 Directory of current newsgroup (%c)
  22. #    4 Article number (%a)
  23. #    5 Where in article to start (%B)
  24. #    6 Newsgroup name (%C)
  25. #    7 Save destination (%b)
  26. #    8 First line of message, normally From...
  27. #
  28. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0; kill $$)
  29.  
  30.  ( /bin/echo "$8"
  31.   if /bin/test "$5" = 0 -a ! "$4" = 0 ; then
  32.     /bin/echo "Article: $4 of $6"
  33.   fi
  34.   /usr/ucb/tail +$5c $1 | /bin/sed "s/^From />From /"
  35.   /bin/echo ""
  36.   /bin/echo "" ) >> $7
  37.