我需要将"
写入字符串,因为脚本需要格式,但是我不知道该怎么做。
是否需要将其标记为字符?
答案 0 :(得分:3)
您需要将其加倍,将其放在单引号中,或使用`
echo "This will output a double quote """
echo '"This will also be put in double quotes"'
echo "`"This is another way to quote`""
有关更多的字符串引用基础知识,请参见official documentation