如何在 Bash 中运行由多个变量分隔的命令?

如何在 Bash 中运行由多个变量分隔的命令?

我想运行一个由几个“部分”组成的命令。

php="php"
options="-l"

for f in `git diff-index --cached --name-only HEAD | grep -e '\(php\|phtml\)$'`; do
   if [ -f $f ]; then
       # Here I want to run my command defined
       # in $php and $options and put the result in
       # $php_lint var
       # like this command would do:
       # php_lint=$(php -l $f)
       # but with something like that:
       # php_lint=eval $php $options $f
   fi
done

我怎样才能做到这一点?

更新:

在就某一点进行斗争之后,我提出了这个问题:

请看一下,它也可能对您有所帮助。

答案1

将选项放入数组中,然后将其展开为"${options[@]}"

前任。

$ cmd=ls
$ options=(-a -l -d)
$ f="foo"

然后

$ result=$("$cmd" "${options[@]}" "$f")

给予

$ echo "$result"
drwxrwxr-x 2 user user 4096 Apr 20 08:07 foo

相关内容