what is the use of "fg" command ?
Answers were Sorted based on User's Feedback
Answer / harish
fg command will put a process running in background to
foreground.
| Is This Answer Correct ? | 49 Yes | 1 No |
Answer / c sivakumar. kumarsiva46@yaho
'bg' means background and 'fg' foreground. This 'fg'
command using to change the background process to
foreground.
| Is This Answer Correct ? | 20 Yes | 2 No |
How many bits use for MAC address?
What is the difference between awk and grep?
What command will change your prompt to myprompt?
What is a bash command?
what is mount ,tell me about mount ,how can u use in real time project??
what are the uses of filters?
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 to change a normal file into hidden file
what is the difference between Touch & cat command
What are the differences among a system call, a library function, and a unix command?
Give a regular expression that finds two things, try to come up with regular expressions that find each individually using "egrep" command?
How do you remove a crontab file?