Path : /proc/3157941/cwd/proc/thread-self/root/usr/share/doc/gawk/examples/misc/ |
Current File : //proc/3157941/cwd/proc/thread-self/root/usr/share/doc/gawk/examples/misc/simple-csv.awk |
BEGIN { FPAT = "([^,]+)|(\"[^\"]+\")" } { print "NF = ", NF for (i = 1; i <= NF; i++) { printf("$%d = <%s>\n", i, $i) } }