z****c 发帖数: 50 | 1 我到更改当前目录以及所有子目录中的 index.php 的权限改为 755
bash脚本要怎么写?
谢谢! |
Q**g 发帖数: 183 | 2 find . -name "index.php" -exec chmod 755 {} \;
【在 z****c 的大作中提到】 : 我到更改当前目录以及所有子目录中的 index.php 的权限改为 755 : bash脚本要怎么写? : 谢谢!
|
z****c 发帖数: 50 | 3 好像有点问题啊
$ find . -name "index.php" -exec chmod 755 {} ;
find: missing argument to `-exec'
【在 Q**g 的大作中提到】 : find . -name "index.php" -exec chmod 755 {} \;
|
E*V 发帖数: 17544 | 4 \
【在 z****c 的大作中提到】 : 好像有点问题啊 : $ find . -name "index.php" -exec chmod 755 {} ; : find: missing argument to `-exec'
|
z****c 发帖数: 50 | 5 谢拉!
【在 E*V 的大作中提到】 : \
|
j*a 发帖数: 14423 | 6 echo chmod 755 `find . -name "index.php" -printf "\"%p\" "` | sh
【在 z****c 的大作中提到】 : 我到更改当前目录以及所有子目录中的 index.php 的权限改为 755 : bash脚本要怎么写? : 谢谢!
|
n*****t 发帖数: 22014 | 7 如果 index.php 太多就不行了,很多命令对命令行参数的长度有限制
【在 j*a 的大作中提到】 : echo chmod 755 `find . -name "index.php" -printf "\"%p\" "` | sh
|