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.
次のスクリプトを書きました。
#!/bin/bash ./vlc $nom > $fichier gedit $fichier
私のスクリプトの実行中。最初のコマンド ( . / vlc $ name> $ file) が実行されますが、ビデオが再生されます。2 番目のコマンドは実行されません。2 番目のコマンドを実行するには、コンソールに戻る必要がありますCtrl。C
. / vlc $ name> $ file
すべてが自動的に行われることを望みます。
アイデアはありますか?
おそらく、最初のプログラムをバックグラウンドで実行することが必要な場合があります。
./vlc $nom > $fichier & gedit $fichier