意外行为是使用双qoutes时shell中的输出,即:
shell>: echo $var
Row1 This is the first Row2 This is the second Row3 This is the third
shell>: echo "$var"
Row1 This is the first
Row2 This is the second
Row3 This is the third
令人惊讶的是,Rown这个词有一个彩色背景,这两种颜色都是可见的。问题如下:
¿如果两个东西(颜色和\ n)都是转义命令,那么为什么猫和转义线中只有第二个颜色出现?
由于