|
|
|
|
|
by kazinator
3274 days ago
|
|
Lisp: $ txr -e '(awk ((prn `@[f 2]:@[f 0] @[f 1]`)))'
1 2 3
3:1 2
How about input from a string stream? At the REPL: 1> (with-in-string-stream (*stdin* "1 2 3")
(awk ((prn `@[f 2]:@[f 0] @[f 1]`))))
3:1 2
nil
It pays not to have awk be some some canned global behavior enabled by a command line option. |
|