用grep命令没有这样的文件或目录

时间:2019-05-15 06:46:28

标签: bash shell grep

以下是我的Unix命令的输出

using

但是当我在脚本内的输出上执行grep时,它显示“没有这样的文件或目录”

$ /data/nagios/libexec/check_http -I example.com  -C 30 -p443 --sni
OK - Certificate 'example.com' will expire on 05/10/2020 12:00. 

下面是脚本

grep: OK - Certificate 'example.com' will expire on 05/10/2020 12:00.: No such file or directory

任何人都可以指导如何解决此问题。当我直接在命令行上执行时,效果很好

 #!/bin/bash
 output=`/data/nagios/libexec/check_http -I example.com  -C 30 -p443 --sni`
 grep 'OK' "$output"

0 个答案:

没有答案