如何通过关键字查找所有目录并自动创建具有相同内容的.htaccess 文件?

如何通过关键字查找所有目录并自动创建具有相同内容的.htaccess 文件?

我需要在 Linux 服务器上找到所有具有目录名的文件夹,并在该目录中config放置包含“ ” 的文件。.htaccessdeny from all

我目前正在尝试运行:

find /home/www/sites/ -type d -name "config" -exec sh -c 'echo "deny from all" > .htaccess' \; 

但它不起作用。

我错过了什么?

答案1

尝试

find /home/www/sites/ -type d -name "config" -exec sh -c 'echo "deny from all" > {}/.htaccess' \;

相关内容