Which command would run “make” in the background?

Which command would run "make" in the background?

Which command would run "make" in the background?

A.
make && bg

B.
make ; bg

C.
make &

D.
nohup make

Explanation/Reference:
append & to any command to run it in the background (alternatively use CTRL+Z and bg)



Leave a Reply 1

Your email address will not be published. Required fields are marked *