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 is shell company all about?

0 Answers  


What are the different types of shell scripting?

0 Answers  


Write a command sequence to find all the files modified in less than 2 days and print the record count of each.

0 Answers  


Is cmd a shell?

0 Answers  


madhar chod unix ke 10 commands dhang se likh nahi sakta hai

0 Answers   Cap Gemini,






How do I run a powershell script?

0 Answers  


Is powershell a bash?

0 Answers  


What language is bash?

0 Answers  


What is the lifespan of a variable inside a shell script?

0 Answers  


If one dont know how to create a script then how he/she can use the QTP?

1 Answers  


Why should we use shell scripts?

0 Answers  


Why do we write bin bash in shell scripts?

0 Answers  


Categories