0

What is the difference between the following fork statements ?

  1. command &
  2. exec command &

You can use wait $! for both statements. In my test I have found no difference in the behavior - but maybe I'm missing something.

4

1 に答える 1

2

既存のプロセスを新しいプロセスに置き換えたり、新しいプロセスをバックグラウンド実行したりすることはできないため、オーバーライド&します。exec

于 2012-09-09T16:36:17.103 に答える