home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / PSIONMAI / PMFULLSO / SUNMAIL / SCCS / S.DOS < prev    next >
Encoding:
Text File  |  1995-07-06  |  321 b   |  19 lines

  1. h23754
  2. s 00006/00000/00000
  3. d D 1.1 95/07/06 18:58:39 tim 1 0
  4. c These are shell scripts that talk to varios programs involved in sending email to / from the psion
  5. e
  6. u
  7. U
  8. f e 0
  9. t
  10. T
  11. I 1
  12. #!/bin/csh -f
  13. echo Shortening file lines
  14. foreach i (in*.msg)
  15.     shortenlines < $i > /tmp/short.tmp
  16.     mv /tmp/short.tmp $i
  17. end
  18. E 1
  19.