Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最初のスクリプトをブロックせずに2つのbashスクリプトを実行する方法はありますか?以下は機能しません。
exec ./script1.sh #this blocks! exec ./script2.sh
&行の終わりに置きます。
&
./script1.sh & #this doesn't blocks! ./script2.sh
を使用してバックグラウンドで最初のものを実行する&と、うまくいくはずです。