Who wrote grep?
No Answer is Posted For this Question
Be the First to Post Answer
what is the default signal kill in unix?
in UNIX,what is the command to remove directory with files?
How do you grep recursively?
what is shell?
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:
Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?
What command will change your prompt to myprompt?
what is the functionality of kernel in unix architecture?
what is virtual machine?
What is awk command used for?
What command is used to check the current users?
what is the difference between "cron" command and "at" command?