summaryrefslogtreecommitdiffstats
path: root/tests/mapfile2.sub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mapfile2.sub')
-rw-r--r--tests/mapfile2.sub6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/mapfile2.sub b/tests/mapfile2.sub
new file mode 100644
index 0000000..771a992
--- /dev/null
+++ b/tests/mapfile2.sub
@@ -0,0 +1,6 @@
+# test mapfile -d DELIM functionality added after bash-4.3
+
+printf "abc\0def\0ghi\0jkl\0" | {
+ mapfile -C echo -c 1 -d '' A
+ echo "${A[@]}"
+}