home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume8 / wrap.p1 < prev    next >
Text File  |  1989-09-06  |  757b  |  29 lines

  1. Newsgroups: comp.sources.misc
  2. keywords: 
  3. organization: Eindhoven University of Technology, The Netherlands
  4. subject: v08i026: Patch for v08i014: line wrapper for BIT/EARNnet mailings
  5. From: allbery@uunet.UU.NET (Brandon S. Allbery - comp.sources.misc)
  6. Reply-To: wsinrobg@urc.tue.nl.UUCP (Rob Gerth)
  7.  
  8. Posting-number: Volume 8, Issue 26
  9. Submitted-by: wsinrobg@urc.tue.nl.UUCP (Rob Gerth)
  10. Archive-name: wrap.p1
  11.  
  12. Here is a patch for a line wrapper I posted some days ago.
  13. I never could count :->
  14. Rob
  15.  
  16. 30c30
  17. < DEFAULT=79
  18. ---
  19. > DEFAULT=80
  20. 49,50c49,50
  21. < if test $LEN -eq 0 
  22. < then    echo "Linelength ($LEN) set to default: `expr $DEFAULT + 1`" 1>&2;
  23. ---
  24. > if test $LEN -le 1 
  25. > then    echo "Linelength ($LEN) set to default: $DEFAULT" 1>&2;
  26. 52a53
  27. > LEN=`expr $LEN - 1`
  28.  
  29.