Which command will you use to change the permissions on file?
Answers were Sorted based on User's Feedback
Answer / jagadeesh kumar.k[tpgsi]
chmod 755 filename
or
chmod
or
chmod a+rwx filename
| Is This Answer Correct ? | 2 Yes | 3 No |
How do you copy a directory with many files and folders into another directory?
What is the use of cut command in unix?
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<stdlib.h> # include <stdio.h> 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:
What is the pipe command?
Write a command to find all of the files which have been accessed within the last 30 days.
in unix echo is used for
10 Answers BFL, BirlaSoft, Patni,
What is sed awk grep?
What are awk commands?
What is the difference between grep and grep?
How to setup sudo, only can use for particular date & time only ( for solaris10 )
What does grep v grep do?
What is the difference between AWK and SED commands? Plz give example and explain...