8 lines
85 B
Awk
8 lines
85 B
Awk
#!/usr/bin/awk -f
|
|
|
|
/^\.so/ {
|
|
gsub(/"/, "", $2)
|
|
system("cat " $2)
|
|
next
|
|
}
|
|
{ print }
|