如何从命令输出中获取信息到变量中

如何从命令输出中获取信息到变量中

我跑了nginx -V,得到的结果如下:

nginx version: nginx/1.18.0
built by gcc 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
built with OpenSSL 1.1.1f  31 Mar 2020
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-5J5hor/nginx-1.18.0=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -fPIC' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-compat --with-pcre-jit --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_sub_module --with-stream=dynamic --with-stream_ssl_module --with-mail=dynamic --with-mail_ssl_module

从这个结果我需要 2 个变量

  1. nginx 版本:“nginx-1.18.0”
  2. 从“--with-cc-opt”开始到行尾

如何获取此信息?我正在尝试获取版本

nginx -V | grep -E -o 'nginx-[0-9]{1}\.[0-9]{1,}\.[0-9]{1,}'

但它不起作用

答案1

nginx -V将输出发送到 stderr 而不是 stdout,因此您可能需要先将其输出重定向到 stdout。

$ nginx -V 2>&1

然后你就可以grep从中获得你需要的东西了nginx -V

$ nginx -V  2>&1 | grep -E "^nginx"
nginx version: nginx/1.18.0

$ nginx -V  2>&1 | grep -E "^(nginx|configure)"
nginx version: nginx/1.18.0
configure arguments: --with-cc-opt='-g -O2 ... --with-mail_ssl_module

相关内容