Ubuntu – How to start multi-threading multiple processes with one command

command lineprocess

I often multi-thread processes from Terminal by running something like:

sudo etherape &

But I have noticed that I am unable to start multi-threading two processes at the same time by doing something like:

sudo etherape & && sudo wireshark &

And I get this error:

bash: syntax error near unexpected token `&&'

So if this can be done, how can it be done?

Best Answer

Please try sudo etherape & sudo wireshark

I hope this answer help you.

Related Question