Execute UNIX & Linux Command to Run in Background

You can execute UNIX or Linux command to be run in background by adding & symbol  at the end of command name.

As an example, you want to run program TEST_PROGRAM,

TEST_PROGRAM &

To monitor the program process, use below command,

ps -ef | grep TEST_PROGRAM

You May Also Like

Leave a Reply?