2
rated 0 times
[
2]
[
0]
/ answers: 1 / hits: 1592
/ 2 Years ago, tue, february 1, 2022, 2:02:57
I'm trying to get bash to execute two commands simultaneously. I've read a little about job control, &, bg, fg, but the problem is that the command I want to run doesn't run properly in the bg.
Specifically, I'm trying to get two movie files to start running simultaneously in mplayer (to compare the two).
$ mplayer [file1] & mplayer [file2] &
doesn't work.
More From » video