«   2025/03   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
Recent Posts
Today
Total
03-12 00:02
300x250
관리 메뉴

변군이글루 블로그(Development)

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

리눅스

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

변군Dev 2022. 2. 24. 12:00
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