如何在 shell 脚本中运行此命令
这是我的 shell 脚本,但它给出了错误:
#!/bin/sh
while getopts "i:o:" flag
do
case $flag in
i) file_input=$OPTARG
;;
o) file_output=$OPTARG
;;
esac
done
mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
--crf 20 --threads auto --output $file_output - ) $file_input
错误消息是:
无法获取内存或文件句柄来写入“>(x264 --demuxer y4m --crf 20 --threads auto --output video.264 - )”!致命:无法初始化视频驱动程序。
当我在 putty 上运行这个命令时:
mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
--crf 20 --threads auto --output video.264 - ) video.wmv
它工作得很好..
我做错了什么?
This is my shell script but it gives errors:
#!/bin/sh
while getopts "i:o:" flag
do
case $flag in
i) file_input=$OPTARG
;;
o) file_output=$OPTARG
;;
esac
done
mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
--crf 20 --threads auto --output $file_output - ) $file_input
The error message is:
Can't get memory or file handle to write ">(x264 --demuxer y4m --crf 20 --threads auto --output video.264 - )"!FATAL: Cannot initialize video driver.
When I run this cmd on putty:
mplayer -nosound -benchmark -vo yuv4mpeg:file=>(x264 --demuxer y4m \
--crf 20 --threads auto --output video.264 - ) video.wmv
it works perfectly..
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您使用的命令使用复杂的 bash 的 管道流到子 shell 语法,即
>()
来实现你想要的。也许您的/bin/sh
(您在 shebang 中作为此脚本的 shell 调用)与您交互使用的 shell(即 bash)不同?The command you're using uses an intricate bash's pipe stream to subshell syntax, i.e.
>()
to achieve what you want. Probably your/bin/sh
(that you invoke as a shell for this script in shebang) is not the same as the shell you're using interactively (i.e. bash)?>(...)
进程替换运算符是 Bash 特定的。如果 Bash 被称为/bin/sh
,它也不可用,因为在这种情况下,Bash 将自身限制为更兼容的功能子集。只需在脚本开头使用
#!/bin/bash
而不是#!/bin/sh
即可。The
>(...)
process substitution operator is Bash-specific. It is also not available if Bash is called as/bin/sh
, because in that case Bash restricts itself to a more compliant subset of its features.Just use
#!/bin/bash
instead of#!/bin/sh
at the start of your script.我建议您添加一些
'
来保护您的特殊字符:I suggest you to add some
'
to protect you special chars: