Explain the behavior of the following shell script:
$ cat quote_demo
twoliner="This is line 1.
This is line 2."
echo "$twoliner"
echo $twoliner
- How many arguments does each echo command see in this script? Explain.
- Redefine the IFS shell variable so that the output of the second echo is the same as the first.