我必须验证var是否存在,如果存在,则必须将类似的短语:“hello how are you”变为变量。
我试过了:
test -e cours_420216
if [ $? ]
echo "alrdy there"
else
echo "add this into" > cours_420216
答案 0 :(得分:1)
bash中的变量赋值以以下形式完成:
cours_420216="hello how are you"
echo "add this into" > cours_420216
会创建一个文件,而不是分配变量