diff options
Diffstat (limited to 'bugs-fixed/numeric-rs.awk')
-rw-r--r-- | bugs-fixed/numeric-rs.awk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bugs-fixed/numeric-rs.awk b/bugs-fixed/numeric-rs.awk new file mode 100644 index 000000000000..cc7a0a0c08c2 --- /dev/null +++ b/bugs-fixed/numeric-rs.awk @@ -0,0 +1,6 @@ +BEGIN { + RS = 1; + while ("echo a1b1c1d" | getline > 0) { + print $1; + } +} |