]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/mapfile2.sub
Bash-4.4 distribution sources and documentation
[thirdparty/bash.git] / tests / mapfile2.sub
CommitLineData
a0c0a00f
CR
1# test mapfile -d DELIM functionality added after bash-4.3
2
3printf "abc\0def\0ghi\0jkl\0" | {
4 mapfile -C echo -c 1 -d '' A
5 echo "${A[@]}"
6}