diff options
Diffstat (limited to 'bugs-fixed/numeric-fs.awk')
-rw-r--r-- | bugs-fixed/numeric-fs.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bugs-fixed/numeric-fs.awk b/bugs-fixed/numeric-fs.awk new file mode 100644 index 000000000000..01e438d4aa28 --- /dev/null +++ b/bugs-fixed/numeric-fs.awk @@ -0,0 +1,5 @@ +BEGIN { + FS = 0; split("20202", a); print a[1]; + FS = 1; $0="31313"; print $1; + FS = 2; "echo 42424" | getline; print $1; +} |