Subject: | Symbolic chmod "+w" doesn't work |
$ touch file; ls -l file
-rw-r--r-- 1 s1 s1 0 2011-02-11 16:07 file
$ perl -MFile::chmod -E'File::chmod::chmod("+x", "file")'; ls -l file
-rwxr-xr-x 1 s1 s1 0 2011-02-11 16:07 file*
$ perl -MFile::chmod -E'File::chmod::chmod("+w", "file")'; ls -l file
-rwxr-xr-x 1 s1 s1 0 2011-02-11 16:07 file*
$ perl -MFile::chmod -E'say $File::chmod::VERSION'
0.32
$