home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 11 Util
/
11-Util.zip
/
MAWK113.ZIP
/
mawk113
/
msdos
/
examples
/
texttest.awk
< prev
next >
Wrap
Text File
|
1992-12-05
|
299b
|
12 lines
# Ben Myers <0003571400@mcimail.com>
/^#include/ {
# got #include, see if it has at least one quote. We don't want #include <>
z = gsub(/"/, "", $2)
while ((z > 0) && (getline x <$2 > 0))
# while (getline x <$2 > 0)
print x
next
}
{ print }