Re: problems with chmod

2001-07-07 Thread Walt Mankowski
On Sat, Jul 07, 2001 at 10:48:14AM -0500, [EMAIL PROTECTED] wrote: #!/usr/bin/perl -w use strict; my $dir = cody; mkdir($dir,0770); i am running this in my home directory on a linux machine, so i have full rights. when i run this however, the permissions on the directory are:

Re: problems with chmod

2001-07-07 Thread charles
This will tell you why or how something might be going wrong and what your pwd is. Also, you should check the parent directory in which you are trying to make this directory for directory permissions (seteuid) which can cause the directory to be created the same as the parent directory.