所以这是一个shell脚本:
#!/bin/bash
trialName= "trial.txt"
chmod a+rwx $trialName
这不起作用。我试图在$trialName
附近添加单引号/双引号,但这也不起作用。我能以任何方式做到这一点吗?
答案 0 :(得分:5)
您需要删除=
之后的空格:
trialName="trial.txt" # note the absence of the space between '=' and '"'
chmod a+rwx "$trialName"
答案 1 :(得分:3)
#!/bin/bash
TRIALNAME="trial.txt"
chmod a+rwx $TRIALNAME
有用吗? =