bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#55487: chmod to +w is not defaulting to ALL target in Debian 11.3


From: Corey H
Subject: bug#55487: chmod to +w is not defaulting to ALL target in Debian 11.3
Date: Wed, 18 May 2022 17:42:02 +0000

Interesting.

On Tue, May 17, 2022 at 9:38 PM Paul Eggert <eggert@cs.ucla.edu> wrote:

> On 5/17/22 10:51, Corey H wrote:
> > sudo chmod +w /etc/whatever/whatever.conf #doesn't work
> > sudo chmod a+w /etc/whatever/whatever.conf #does work
>
> It sounds like you're misunderstanding what "chmod +w" means. It doesn't
> mean "turn on all the w bits". It means "turn on the w bits enabled by
> the current umask". So, for example, this is expected behavior:
>
> $ umask
> 0022
> $ touch foo
> $ ls -l foo
> -rw-r--r--. 1 eggert eggert 0 May 17 14:37 foo
> $ chmod +w foo
> $ ls -l foo
> -rw-r--r--. 1 eggert eggert 0 May 17 14:37 foo
> $ umask 0
> $ chmod +w foo
> $ ls -l foo
> -rw-rw-rw-. 1 eggert eggert 0 May 17 14:37 foo
>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]