PageRenderTime 59ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/usr.bin/awk/tests/ch2p60.awk

https://bitbucket.org/warthurton/gno
AWK | 9 lines | 7 code | 1 blank | 1 comment | 0 complexity | 1c252f857136416eb9aeaaaa9ea4cee0 MD5 | raw file
Possible License(s): AGPL-1.0
  1. # include - replace #include "f" by contents of file f
  2. /^#include/ {
  3. gsub(/"/, "", $2)
  4. while (getline x <$2 > 0)
  5. print x
  6. next
  7. }
  8. { print }