Web Hosting Talk







View Full Version : chmod help


mdd4j
03-27-2002, 10:43 AM
How do I chmod (755) all directory using telnet. ;)

jamesl
03-27-2002, 10:55 AM
Hi,

If you want to chmod everything in the directory but nothing below that use:
chmod 0755 *

If you want to chmod everything including subdirectories use:
chmod 0755 * -R

Also try:
man chmod
for lots more information on using the chmod command.

HTH