终端命令的模式匹配输出(ubuntu)

终端命令的模式匹配输出(ubuntu)

如何对命令的输出进行模式匹配?

例如我需要运行以下命令:

nginx -V

返回以下内容:

nginx version: nginx/1.10.3 (Ubuntu)
built with OpenSSL 1.0.2g  1 Mar 2016
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --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 --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-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads

我需要匹配术语“命令参数:”之后的所有内容然后我需要在匹配的字符串末尾附加一个字符串最后我需要运行一个新命令

有人知道怎么做吗?

答案1

这可能会有效:

eval "nginx -V | grep 'configure arguments: ' | sed -n -e 's/^configure arguments: /begining command /; s/$/ end string/p'"

它 grep 正确的行,configure arguments:用起始命令替换并在末尾附加一个字符串,最后将结果打印为执行的字符串。

相关内容