what is "umask"?

Answers were Sorted based on User's Feedback



what is "umask"? ..

Answer / narendrasairam

If any file possess all the read,write and execute
permissions means, its said to have permission set "777".
umask is a command which displays or sets the file mode
creation mask.

Means, any created file is masked with the permission set
given by umask command.

For instance, if the umask is "033" the default file
permissions will be 777-033 i.e., "744" just as file
permissions in above Balaji's answer.

Is This Answer Correct ?    19 Yes 4 No

what is "umask"? ..

Answer / balaji t

umask is used to set the default directory/file access
restriction during it creation.

For example: In '.profile' if you use 'umask 033' then if
you create any file/directory that will be in 'rwx-r--r--'

Is This Answer Correct ?    22 Yes 9 No

what is "umask"? ..

Answer / neha c

UMASK:- user file creation mask. This tells which
permissions are hidden from the owner, group and other. It
doesnt tell which permissions are granted rather tells which
are denied.

Default file permissions=666
Default directory permissions=777

Actual file permissions= (Default file permissions) - (Value
of Umask)
If value of UMASK = 232 then actual file permissions=
666-232= 434

Value of UMASK can be changed by the following command:-
UMASK <new_value_to_be_given>
UMASK 253

Is This Answer Correct ?    14 Yes 4 No

what is "umask"? ..

Answer / rakesh arora

umask is to set the default directory and file access
restriction set during it creation.

For Example if Umask is 033( means 000011011 ) then
directory permission will be its complement

so default dir permission is 111100100 ( means 744)

now,AND dir permission with 110110110 (666) so it comes to
and file permission is 110100100 (644)

Is This Answer Correct ?    6 Yes 1 No

what is "umask"? ..

Answer / prakash

umask 700 file1

is

similar to


chmod 077 file1

Is This Answer Correct ?    8 Yes 3 No

what is "umask"? ..

Answer / shajahan

umask stands for user file creation mask, the term mask
implying which permissions to mask or hide. The umask value
tells Unix which of the three permissions are to be denied
rather than granted. The current value of umask can be
easily determined by Command: $umask

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Shell Script Interview Questions

What does $@ mean in shell?

0 Answers  


What is inside a seashell?

0 Answers  


Determine the output of the following command: [ -z “” ] && echo 0 || echo 1

0 Answers  


What is shell prompt?

0 Answers  


‎What is a shell? · ‎Types of shell · ‎what is shell scripting?

0 Answers  






Is scripting and coding the same thing?

0 Answers  


What is shell company all about?

0 Answers  


Explain about return code?

0 Answers  


what is info area how many types?

0 Answers  


What does $# stand for?

3 Answers   IBM,


Is it possible to substitute "ls" command in the place of "echo" command?

0 Answers  


In a single command how do you run the previous command in the command prompt.

5 Answers  


Categories