awk/bugs-fixed/numeric-rs.awk
2018-09-23 17:35:45 -07:00

7 lines
74 B
Awk

BEGIN {
RS = 1;
while ("echo a1b1c1d" | getline > 0) {
print $1;
}
}