home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Education Sampler 1992 [NeXTSTEP]
/
Education_1992_Sampler.iso
/
Programming
/
Classes
/
XText
/
combine-files
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-05-02
|
139 b
|
7 lines
#!/bin/csh -f -b
foreach f ($*)
echo "// (beginning of $f)"
awk '/^#import "/{y=1;next}/^#import </{y=1}y==1' $f
echo "// (end of $f)"
end