+1 vote
in Linux by
What is the advantage of executing the running processes in the background? How can you do that?

1 Answer

0 votes
by

The most significant advantage of executing the running process in the background is that you can do any other task simultaneously while other processes are running in the background. So, more processes can be completed in the background while you are working on different processes. It can be achieved by adding a special character ‘&’ at the end of the command.

...