我需要在 Linux 服务器上找到具有目录名称的所有文件夹config
,并将 a.htaccess
放入包含“ deny from all
”的目录中。
我目前正在尝试运行:
find /home/www/sites/ -type d -name "config" -exec sh -c 'echo "deny from all" > .htaccess' \;
但它不起作用。
我错过了什么?
我需要在 Linux 服务器上找到具有目录名称的所有文件夹config
,并将 a.htaccess
放入包含“ deny from all
”的目录中。
我目前正在尝试运行:
find /home/www/sites/ -type d -name "config" -exec sh -c 'echo "deny from all" > .htaccess' \;
但它不起作用。
我错过了什么?
尝试