我想用VLC播放网络电台。
我在终端上使用cvlc
命令,它可以工作。
cvlc http://5.20.223.18/relaxfm128.mp3
但是如果我创建一个shell脚本,radio.sh
:
#!/bin/bash
cvlc http://5.20.223.18/relaxfm128.mp3
我尝试在终端上运行bash脚本
bash radio.sh
然后我得到了多个错误:
main input error: open of `http://5.20.223.18/relaxfm128.mp3
main input error: Your input can't be opened
VLC is unable to open the MRL 'http://5.20.223.18/relaxfm128.mp3
我做错了什么?