What is the behavioural difference between cmp and diff commands?
No Answer is Posted For this Question
Be the First to Post Answer
Can you explain a little bit about command substitution?
What is the command to find maximum memory taking process on the server?
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:
How will you know who are the users logged in to the system before 15 minutes?
Which command is used to kill the last background job?
what is the difference between SED and GREP ? Which one is more better and why?
What is the output of : $ ps-e $ ps-a commands
What is the significance of the 'tee' command?
Briefly, how do you install Oracle software on UNIX.
How to check the flavor of UNIX?
Enumerate some of the most commonly used network commands in unix?
in UNIX,How do you check for processes started by particular user suppose the user name is 'suresh'?