.sh 文件执行权限赋予 chmod ( -u root )-x script.sh
单引号 无视变量 双引号 执行变量
例:
a1=‘phone‘
a2=‘this is a ${a1}‘
echo ${a2}
结果: this is a ${a1}
a1=‘phone‘
a2="this is a ${a1}"
echo ${a2}
结果: this is a phone
Posted Lorentz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux shell 01相关的知识,希望对你有一定的参考价值。
.sh 文件执行权限赋予 chmod ( -u root )-x script.sh
单引号 无视变量 双引号 执行变量
例:
a1=‘phone‘
a2=‘this is a ${a1}‘
echo ${a2}
结果: this is a ${a1}
a1=‘phone‘
a2="this is a ${a1}"
echo ${a2}
结果: this is a phone
以上是关于linux shell 01的主要内容,如果未能解决你的问题,请参考以下文章