bash – 我可以在变量中指定重定向和管道吗?

我有一个bash脚本,为当前目录创建一个Subversion补丁文件.如果-z作为脚本的参数给出,我想修改它以压缩生成文件.

这是相关部分:

zipped=''
zipcommand='>'

if [ "$1" = "-z" ]
then
   zipped='zipped '
   filename="${filename}.zip"
   zipcommand='| zip >'
fi

echo "Creating ${zipped}patch file $filename..."

svn diff $zipcommand $filename

这不起作用,因为它通过了|或者>包含在$zipcommand中作为svn的参数.

我可以很容易地解决这个问题,但问题是当它们包含在变量中时是否可以使用这些类型的运算符.

谢谢!

解决方法

我会做这样的事情(使用bash -c或eval):

zipped=''
zipcommand='>'

if [ "$1" = "-z" ]
then
   zipped='zipped '
   filename="${filename}.zip"
   zipcommand='| zip -@'
fi

echo "Creating ${zipped}patch file $filename..."

eval "svn diff $zipcommand $filename"
# this also works: 
# bash -c "svn diff $zipcommand $filename"

这似乎有效,但我的zip版本(Mac OS X)要求我改变这一行:

zipcommand='| zip -@'

zipcommand='| zip - - >'

编辑:纳入@DanielBungert建议使用eval

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...