The following issue occurs on fish 3.6.4 and can be reproduced as follows. The following works fine:
> umask 0007
> umask
0007
> umask -S
u=rwx,g=rwx,o=
However, the symbolic mode equivalent does not work, regardless of order:
> umask u=rwx,g=rwx,o=
set: given 1 indexes but 0 values
> umask o=,u=rwx,g=rwx
set: given 1 indexes but 0 values
This works fine in bash, so I assume it should also work in fish. I have no third-party customizations. Note that the following is not equivalent:
This does not override the value of o.
The following issue occurs on fish 3.6.4 and can be reproduced as follows. The following works fine:
However, the symbolic mode equivalent does not work, regardless of order:
This works fine in bash, so I assume it should also work in fish. I have no third-party customizations. Note that the following is not equivalent:
> umask u=rwx,g=rwxThis does not override the value of
o.