一般来说如果在echo里直接写上 ,他不会被转义,必须加上-e参数
echo "hello morning" # 输出为 hello morning echo -e "hello morning" # 输出为 #hello # morning
貌似如果带-e参数,!等符号也变成shell的运算符,所以-e还是不能滥用
一般来说如果在echo里直接写上 ,他不会被转义,必须加上-e参数
echo "hello morning" # 输出为 hello morning echo -e "hello morning" # 输出为 #hello # morning
貌似如果带-e参数,!等符号也变成shell的运算符,所以-e还是不能滥用