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

  1. #!/bin/csh -f
  2. echo Shortening file lines
  3. foreach i (in*.msg)
  4.     shortenlines < $i > /tmp/short.tmp
  5.     mv /tmp/short.tmp $i
  6. end
  7.