I have Ubuntu Server 18.04 LTS.
I want to run two processes, but at the same time have a "clean" command line.
For example,
process 1: ping google.com
process 2: ping facebook.com
I tried running them in the background using &
:
process 1: ping google.com &
process 2: ping facebook.com &
However, the results of executing commands are displayed in the command line:
How can I run two processes to leave the command line "clean"?