you can find the snapshot of the error here
With a umask value of 457 it should come as w, x, - 210 (666-457) but instead i am seeing it as w,w,-..(220). why is that?
you can find the snapshot of the error here
With a umask value of 457 it should come as w, x, - 210 (666-457) but instead i am seeing it as w,w,-..(220). why is that?
Let's break this down: umask does not do substraction, but rather a bitwise operation. It works by switching off the bits in the premission that are set on the umask, so in this case:
Does that help?