问题:

Linux shell字符串命令(等于包含多条命令)中的管道符,需用eval来求值。否则管道符“|”会被当做普通字符串来处理,输出非期望的结果。

#!/bin/bash

CMD="ls -l /home"

if [ "-s" == "$1" ] ; then
    CMD="$CMD | grep --color=auto docker"
fi

echo $CMD
$CMD

通过查看shell命令的解释过程,可以看到管道符被当做‘|’字符,失去了管道符的意义。

faster@ubuntu:~$ bash -x test0.sh -s
+ CMD='ls -l /home'
+ '[' -s == -s ']'
+ CMD='ls -l /home | grep --color=auto docker'
+ echo ls -l /home '|' grep --color=auto docker
ls -l /home | grep --color=auto docker
+ ls -l /home '|' grep --color=auto docker
ls: cannot access '|': No such file or directory
ls: cannot access 'grep': No such file or directory
ls: cannot access 'docker': No such file or directory
/home:
total 16
drwxr-xr-x 12 tiger  builder 4096 Apr  4 07:12 builder
drwxr-xr-x  3 tiger  docker  4096 Oct  3  2016 docker
drwxr-xr-x 11 faster faster  4096 Jun  7 15:24 faster


解决:

方法1:

使用eval求值的方法执行命令串。

#!/bin/bash

CMD="ls -l /home"

if [ "-s" == "$1" ] ; then
    CMD="$CMD | grep --color=auto docker"
fi

echo $CMD
eval $CMD

 

方法2:

2条命令分开执行。

#!/bin/bash

CMD="ls -l /home"

if [ "-s" == "$1" ] ; then
    $CMD | grep --color=auto docker
else
    $CMD
fi


GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐