回声变成var(shell)

时间:2013-11-22 21:58:18

标签: shell

我必须验证var是否存在,如果存在,则必须将类似的短语:“hello how are you”变为变量。

我试过了:

test -e cours_420216
if [ $? ]
echo "alrdy there"
else
echo "add this into" > cours_420216

1 个答案:

答案 0 :(得分:1)

bash中的变量赋值以以下形式完成:

cours_420216="hello how are you"

echo "add this into" > cours_420216

会创建一个文件,而不是分配变量