diff options
Diffstat (limited to 'test/splitvar.awk')
-rw-r--r-- | test/splitvar.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/splitvar.awk b/test/splitvar.awk new file mode 100644 index 00000000..9e1ac790 --- /dev/null +++ b/test/splitvar.awk @@ -0,0 +1,5 @@ +{ + sep = "=+" + n = split($0, a, sep) + print n +} |