리눅스
[draft] curl 명령어(curl bash -x)
변군Dev
2022. 2. 24. 12:00
curl 명령어(curl bash -x)
curl로 스크립트를 다운로드하기
curl -Ssf https://sangchul.kr/scripte/webconfsync.sh -o /tmp/webconfsync.sh
curl로 스크립트를 다운로드하고 실행하기
curl -Ssf https://sangchul.kr/scripte/webconfsync.sh | bash -x
wget을 사용하여 스크립트를 다운로드하고 실행하기
wget -qO - https://sangchul.kr/scripte/webconfsync.sh | bash -x