我需要在 Linux 服务器上找到所有具有目录名的文件夹,并在该目录中config
放置包含“ ” 的文件。.htaccess
deny 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' \;