「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/ ログ /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-
だから私はエラー出力を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'
として解釈されます。参照メカニズムの1つを削除すると問題が解決します。\
n