“nginx -V”的输出一团糟。
nginx 版本:nginx/1.9.3 (Ubuntu) 使用 OpenSSL 1.0.2d 构建 2015 年 7 月 9 日 启用 TLS SNI 支持 配置参数:--with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -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-
因此,我编写了一个简单的脚本,将 err 输出重定向到 stdout 并拆分整行:
nginx -V 2>&1 | sed -r 's/--/\\n/g'
它不起作用。
nginx -V 2>&1 | sed -r s/--/\\n/g
这有效,我只是不知道为什么。
答案1
只是为了测试:
$ echo "configure arguments: --with-cc-opt=" | | sed -r 's/--/\\n/g'
不起作用。但是这个:
$ echo "configure arguments: --with-cc-opt=" | sed -r 's/--/\n/g'
确实有效。如此,也:
$ echo "configure arguments: --with-cc-opt=" | sed -r s/--/\\n/g
简而言之: 不起作用'\\n'
,它被解释为反斜杠\
和n
。删除任一引用机制即可纠正该问题。