1 # problems with word splitting unquoted here-strings present since bush-3.2
4 cat <<< $x # Word-splitting appears to collapse the run of whitespace
5 cat <<< "$x" # Whitespace preserved, as with here doc
9 cat <<< $x # Word-splitting appears to collapse the run of whitespace
10 cat <<< "$x" # Whitespace preserved, as with here doc