The following command attempts to copy /.htaccess to all folders permission 0777
find /home/*/www/ -type d -perm 0777 \
| xargs -r -d '\n' cp -rf /.htaccess
am looking to run it with terminal ssh command
i search for all folders have 0777 and copy htaccess to all at once