셸 포맷 출력 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 °% & 등) 로 바 꾼 다음 쉼표 삭 제 를 말 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MyBatis 매개변수 유형이 String일 때 자주 발생하는 문제 및 해결 방법1. 매개변수가 String일 때 보간 문제 다음 Dao 인터페이스 방법이 있다고 가정해 보세요. 대응하는 마퍼.xml 일반적으로 우리는 이런 식으로 쓰는데 다른 유형에 대해서는 맞지만 String을 위해 던지는 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.