What is a good umask value, and why?
What will be an ideal response?
A umask of 022 will mask off the write permission bits of any file you create, thus by default not
allow write access to the file by any user other than yourself (the creator of the file). For the ultra-
paranoid, a umask of 077 might be preferable which masks off all access permission to the file by
any other user.
Computer Science & Information Technology