busybox/shell/hush_test/hush-vars/var_wordsplit_ifs2.tests

14 lines
268 B
Plaintext
Executable File

# 123 chars long
a="\
01234567890123456789\
01234567890123456789\
01234567890123456789\
01234567890123456789\
01234567890123456789\
0123456789\
0123456789\
012"
IFS=2; for v in ${#a}; do echo Unquoted:"<$v>"; done
IFS=2; for v in "${#a}"; do echo Quoted:"<$v>"; done