如何 chmod 所提供路径的子目录 (BASH)
我需要一个采用单个命令行参数(即目录路径)的脚本。该脚本应该检查参数以确定它是否确实是一个目录。如果它是一个目录,则脚本应将其中的任何子目录的保护模式更改为 600。如果参数不是目录,则应打印出相应的消息。
我有
if [ -d $1 ] ;然后
else
echo "这不是目录"
fi
基本上我不知道在空白行上放什么。我在玩弄 chmod 但我的行似乎想要更改输入的路径而不仅仅是子目录。
I need a script that takes a single command line argument that is a directory path. The script should check the argument to determine if it is in fact a directory. If it is a directory, then the script should change the protection mode of any subdirectories located in it to 600. If the argument is not a directory, then an appropriate message should be printed out.
I have
if [ -d $1 ] ; then
else
echo "This is not a directory"
fi
Basically I don't know what to put on the blank line. I was fooling around with chmod but my line seemed to want to change the inputted path and not just the subdirectories.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
各种变体可能会更快,但依赖于古代
find
或xargs
中没有的功能。Various variants may be faster, but depend on features not in ancient
find
orxargs
.