您好我试图使用bash脚本同时运行两个vlc实例:
#!/bin/bash
vlc http://testvideo1.com/video.mp4
vlc http://testvideo1.com/video.m3u8
但是当我运行它时,第二个命令将不会运行,直到我关闭vlc的第一个实例
答案 0 :(得分:3)
默认情况下,脚本将等待每个命令,直到进程返回。 (即关闭)您应该使用ampersand运算符在后台运行命令。您的bash脚本应为:
#!/bin/bash
vlc http://testvideo1.com/video.mp4 &
vlc http://testvideo1.com/video.m3u8 &