Explain how to use grep command to list find the records of a file containing 10 different strings?
No Answer is Posted For this Question
Be the First to Post Answer
What is the Unix file system hierarchy?
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 does pipe () return?
Who invented grep?
hw will u use awk in replacing cahrs and files
why unix commands can be divided into internal and external commands?
Enlist some filename manipulation commands in unix.
Who command in unix operating system?
what do you understand by 'unix is a portable os'?
how to check a file system type
How to display a file name which has zero bytes in size.
What is the pipe command?