如何更改当前目录中包含单词“test”的所有文件的访问权限(添加组读/写)
答案1
您可以使用:
chmod g+rw *test* .*test*
或者:
find -maxdepth 1 -name '*test*' -exec chmod g+rw {} +
如何更改当前目录中包含单词“test”的所有文件的访问权限(添加组读/写)
您可以使用:
chmod g+rw *test* .*test*
或者:
find -maxdepth 1 -name '*test*' -exec chmod g+rw {} +