What is ctrl d?
No Answer is Posted For this Question
Be the First to Post Answer
How many unix commands are there?
What command is used to switching between users in unix?
Which command is used to create a directory?
Write a command that will output the sorted contents of a file named in.txt and place the output in another file named out.txt, while at the same time excluding duplicate entries.
What are the general commands in using unix os for a beginner?
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 do you understand by 'unix is a portable os'?
What is the functions of zambie process?
How do you change your account's password?
How does shebang work?
Explain ‘system calls’ with respect to unix commands?
What is the output of : $ ps-e $ ps-a commands