셸 포맷 출력 nginx 의 컴 파일 매개 변수

명령 하 다.
nginx -V > nginx.txt
cat -n nginx.txt  | sed -n '5,18p' | awk '{$1="";print $0}' 
| sed 's/^[ ]*//g'  | tr '
' ',' | sed -n 's/,//gp' | tr " " "
"

결실
configure
arguments:
--user=nginx
--group=nginx
--prefix=/usr/share/nginx
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body
--http-proxy-temp-path=/var/lib/nginx/tmp/proxy
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi
--http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi
--http-scgi-temp-path=/var/lib/nginx/tmp/scgi
--pid-path=/var/run/nginx.pid
--lock-path=/var/lock/subsys/nginx
--with-http_ssl_module
--with-http_spdy_module
--with-http_v2_module
--with-http_realip_module
--with-http_addition_module
--with-http_xslt_module
--with-http_p_w_picpath_filter_module
--with-http_sub_module
--with-http_dav_module
--with-http_flv_module
--with-http_gzip_static_module
--with-http_secure_link_module
--with-http_degradation_module
--with-http_stub_status_module
--with-debug
--with-http_sysguard_module
--with-http_upstream_check_module
--with-http_lua_module
--with-http_dyups_module
--with-luajit-lib=/usr/lib
--with-luajit-inc=/usr/include/luajit-2.0

설명:
awk '{$1="";print $0}'

두 번 째 열 을 마지막 열 로 출력 합 니 다 (즉, 첫 번 째 열 제외)
 sed 's/^[ ]*//g'

줄 의 빈 칸 을 없애다
tr '
' ',' | sed -n 's/,//gp'

줄 바 꿈 자 를 없 애고 줄 바 꿈 자 를 쉼표 (또는 \ # 65509 °% & 등) 로 바 꾼 다음 쉼표 삭 제 를 말 합 니 다.

좋은 웹페이지 즐겨찾기