command-substitutions.ion 223 B

123456
  1. echo $(echo "one two three" "four 'five' six")
  2. echo 0 "$(echo -e ' one two three ')" 1
  3. echo 0 "$(echo -e ' one\ntwo\nthree ')" 1
  4. echo 0 $(echo -e ' one two three ') 1
  5. echo 0 $(echo -e ' one\ntwo\nthree ') 1