Linux中单引号、双引号与反引号的关系和区别
1、单引号、双引号用于用户把带有空格的字符串赋值给变量的分界符。[root@localhost sh]# str=“Today is Monday” [root@localhost sh]# echo $str Today is Monday 如果没有单引号或双引号,shell会把空格后的字符串解释为命令。 [root@localhost sh]# str=Today is Mo...