eddylambert
Have looked everywhere for some info on this but can't find it. Here's a summary of what I'm trying to do.
I don't have shell access to my server and need to remove group execute permissions recursively on all html files in all directories (I have thousands of directories). I can create a custom command that changes the permissions on selected files or directories using...
SITE CHMOD 765 %fa
But as soon as I add the -R switch to make this happen recursively, e.g...
SITE CHMOD -R 765 %fa
It generates an error.
I have tried using the g-x switch (SITE CHMOD g-x %fa) to only update the group execute bit (the ideal solution) but that simply wipes all the permission settings for the file.
What I'm trying to achieve is equivalent to the following shell command:
chmod -R g-x *.html
or if that isn't possible then...
chmod -R 765 *.html
SmartFTP has a recursive option but I don't want this change to impact on all files, only *.html files.
Is the above possible?
Thanks in advance y'all.
I don't have shell access to my server and need to remove group execute permissions recursively on all html files in all directories (I have thousands of directories). I can create a custom command that changes the permissions on selected files or directories using...
SITE CHMOD 765 %fa
But as soon as I add the -R switch to make this happen recursively, e.g...
SITE CHMOD -R 765 %fa
It generates an error.
I have tried using the g-x switch (SITE CHMOD g-x %fa) to only update the group execute bit (the ideal solution) but that simply wipes all the permission settings for the file.
What I'm trying to achieve is equivalent to the following shell command:
chmod -R g-x *.html
or if that isn't possible then...
chmod -R 765 *.html
SmartFTP has a recursive option but I don't want this change to impact on all files, only *.html files.
Is the above possible?
Thanks in advance y'all.