如何将 $ 符号作为字符串包含在内?

如何将 $ 符号作为字符串包含在内?

我想使用通用模板创建多个文件,问题是模板中有“$(variable)”,应该用$符号编写。例如,我想要output is $job_ID

echo "output is $job_ID" 

有什么建议吗?

答案1

您可以使用反斜杠转义特殊字符,例如:

echo " output is \$job_ID"

或使用单引号代替

echo ' output is $job_ID'

相关内容