Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
したがって、これはシェルスクリプトにあります:
#!/bin/bash trialName= "trial.txt" chmod a+rwx $trialName
それは本当にうまくいきません。一重引用符/二重引用符を追加しようとしています$trialNameが、それも機能しません。それを行う方法はありますか?
$trialName
の後のスペースを削除する必要があります=。
=
trialName="trial.txt" # note the absence of the space between '=' and '"' chmod a+rwx "$trialName"
#!/bin/bash TRIALNAME="trial.txt" chmod a+rwx $TRIALNAME
それは機能しますか?間に空白を入れることはできません=