home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PDA Software Library
/
pdasoftwarelib.iso
/
PSION
/
COMMS
/
PSIONMAI
/
PMFULLSO
/
SUNMAIL
/
DOSHORTE
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-06
|
129 b
|
7 lines
#!/bin/csh -f
echo Shortening file lines
foreach i (in*.msg)
shortenlines < $i > /tmp/short.tmp
mv /tmp/short.tmp $i
end