<quote who="Andrewd"> > I have a bunch of files I need to chmod. All files exist under a main > directory and also under sub directories (of the main). I know I can chmod > 666 *.php but I need to do that in each directory. How do I tell it to go > thru each sub directory and change the files
You can use chmod -R or find and xargs. However, chmod 666 sounds like a bad idea - why do you need to do that? - Jeff -- What's all that about? http://www.no-name-yet.com/ "Life is short. Forgive quickly. Kiss slowly." - Robert Doisneau -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
