init version.
[bush.git] / tests.bak / herestr1.sub
blob16d5f37663aacd983d476d6f4f3c0f9742fd5734
1 # problems with word splitting unquoted here-strings present since bush-3.2
3 x="foo        bar"
4 cat <<< $x     # Word-splitting appears to collapse the run of whitespace
5 cat <<< "$x"  # Whitespace preserved, as with here doc
7 x="qux:::::bax"
8 IFS=':'
9 cat <<< $x     # Word-splitting appears to collapse the run of whitespace
10 cat <<< "$x"  # Whitespace preserved, as with here doc