gpt4 book ai didi

shell - 如何在 shell 脚本中使用 chmod

转载 作者:行者123 更新时间:2023-12-04 16:16:51 25 4
gpt4 key购买 nike

所以这是在一个 shell 脚本中:

#!/bin/bash
trialName= "trial.txt"

chmod a+rwx $trialName

这真的行不通。我正在尝试在 $trialName 周围添加单引号/双引号,但这也不起作用。有什么办法可以做到吗?

最佳答案

=后面的空格需要去掉:

trialName="trial.txt" # note the absence of the space between '=' and '"'
chmod a+rwx "$trialName"

关于shell - 如何在 shell 脚本中使用 chmod,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11403135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com