On Tue, Aug 24, 2004 at 12:03:44PM +0200, Glauco Chiyaki Sesta wrote: > I have several php files in a directory, among other files. > How do I chmod -R 0755 *.php ? > The * is not supported. The man page suggests using the find command to
Try:
glob chmod 0755 *.php
--
Alexander.
