firing up commands simultaneously

How can I start two or more processes from the bash prompt in the same time, instead of doing it sequentially? So, I do not ask for $command1;command2;... but how to use multitasking from the command line?

0

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

firing up commands

You can fork a process using '&':
ls -l &
ps -e &

Usually it is safer to write a script to do any tasks that you repeat.

firing up commands

Wow, the new symbol &! This is a chest in Zangband, i think. And a demon somewhere else. Hmmm...

Thanks!

Syndicate content