NavigationUser loginSpam?See spam posts on this site? If so, please don't reply to the spam! Instead, just report the URL to the webmaster. Cost of War |
firing up commands simultaneouslyHow 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? |
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!