当前位置: 技术问答>linux和unix
怎么定义变量/
来源: 互联网 发布时间:2016-08-04
本文导语: a.txt文件的内容为 —————————————————— color = blue echo "sky is ${color:-gray} today。" —————————————————— a.txt为可执行那个文件。 在shell重输入 #./a.txt err: line 1: color: command...
a.txt文件的内容为
——————————————————
color = blue
echo "sky is ${color:-gray} today。"
——————————————————
a.txt为可执行那个文件。
在shell重输入
#./a.txt
err: line 1: color: command not fond.
the sky is greay today.
定义变量不就是这么定义的吗?
——————————————————
color = blue
echo "sky is ${color:-gray} today。"
——————————————————
a.txt为可执行那个文件。
在shell重输入
#./a.txt
err: line 1: color: command not fond.
the sky is greay today.
定义变量不就是这么定义的吗?
|
color = blue
echo "sky is ${color}:-gray today。"
echo "sky is ${color}:-gray today。"