chmod -R 755 *.cgi
Why does this command NOT work?
chmod -R 755 *.cgi
chmod: getting attributes of `*.cgi': No such file or directory
I want to recursively change every .cgi file to 755. Is there no way to do a wildcard and recurse at the same time with chmod?
|