본문 바로가기

리눅스

리눅스 curl 명령어(curl bash -x)

728x90

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

 

728x90