ubuntu-buildroot/output/build/host-gawk-5.2.0/test/revtwoway.awk

12 lines
165 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
@load "revtwoway"
BEGIN {
cmd = "/magic/mirror"
print "hello, world" |& cmd
cmd |& getline line
printf("got back: <%s>, RT = <%s>\n", line, RT)
close(cmd)
}