What do you expect? Both commands execute concurrently/in parallel and write their output concurrently to STDOUT. Thus, you will see the output of both commands intermixed. If you want to separate this, you should redirect the output of each command to a temp file and then read that temp file again.