Answer Posted / 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 |
Post New Answer View All Answers
Print the 10th line without using tail and head command.
What is the difference between scripting and coding?
How to print pid of the current shell?
What is shell company all about?
Explain about return code?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
Why is it called a shell?
What does $@ mean bash?
What is meant by $1 in shell script?
What is awk in shell scripting?
When should shell programming/scripting not be used?
What is the use of break command?
How important is shell scripting?
What is the purpose of scripting?
What language is shell scripting?