PageRenderTime 55ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/examples/awkequiv.awk

https://bitbucket.org/hengestone/ragelgit
AWK | 10 lines | 6 code | 2 blank | 2 comment | 0 complexity | 403d73b939ee48b3c4be61378714e060 MD5 | raw file
Possible License(s): LGPL-2.1, GPL-2.0
  1. #!/usr/bin/awk -f
  2. #
  3. {
  4. print "endline(" NF "): " $0
  5. for ( i = 1; i <= NF; i++ ) {
  6. print " word: " $i
  7. }
  8. }