escape5.tests 82 B

1234567
  1. v="a\nb\nc\n"
  2. echo "$v"
  3. printf "$v"
  4. v='a\nb\nc\n'
  5. echo "$v"
  6. printf "$v"
  7. echo Done