mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
14 lines
255 B
Awk
14 lines
255 B
Awk
BEGIN { FS="\"" }
|
|
|
|
function process(line, second) {
|
|
if (line ~ /^#include[ \t]*".+"[ \t\r]*$/) {
|
|
while (getline < second) {
|
|
process($0, $2)
|
|
}
|
|
} else {
|
|
print line
|
|
}
|
|
}
|
|
|
|
{ process($0, $2) } END { print "\0"; }
|