Assume the following files are in the working directory
prompt> ls -l tasks
-rw-r--r-- 1 alex student 1423 Feb 21 14:01 tasks
What command can Alex use to give everyone permission to
write to the file? What will the ls -l
command display if he does so?

Answer Posted / sivanantham

chmod 666 tasks

-rw-rw-rw- 1 alex student 1423 Feb 21 14:01 tasks

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is nr in awk command?

611


What is in grep command?

653


What is ‘ps’ command for?

620


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1769


What difference between cmp and diff commands?

729






What does sed command do in unix?

568


What is used to type command?

550


What are file commands?

657


How does the system know where one command ends and another begins?

1584


What are awk commands?

587


What does #!/ Bin sh do?

599


What does the metacharacter mean?

614


What are reported commands?

570


Which command will print your home directory on screen?

549


What is {} in find command?

584