What is in grep command?
What is the pipe command?
What is the difference between pipe and xargs?
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 telnet?
Why is grep called grep?
Differentiate cmp command from diff command.
What command is used to check the current users?
A file has 1000 lines and i want to display only 1st line how to do it? pls ..tel me
How can i know my Filesystem and its current usage in my prod UNIX system?
how many internal commands is there in UNIX?
What is the difference between cat command and more command?
What is pid?