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) 会在视频播放后运行。不执行第二个命令。对于第二个命令运行,我将不得不返回到控制台,我会这样做:Ctrl+C
. / vlc $ name> $ file
我希望一切都自动完成。
请问你有什么想法吗?
也许您想要的是第一个程序在后台运行:
./vlc $nom > $fichier & gedit $fichier