aboutsummaryrefslogtreecommitdiffstats
path: root/test/splitarr.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/splitarr.awk')
-rw-r--r--test/splitarr.awk5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/splitarr.awk b/test/splitarr.awk
new file mode 100644
index 00000000..c1185a4d
--- /dev/null
+++ b/test/splitarr.awk
@@ -0,0 +1,5 @@
+BEGIN {
+ a[1] = "elephantie"
+ a[2] = "e"
+ print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
+}