cURL

# 일반적인 파일 다운로드
curl -o <OutputPath> <URL>

# 파이썬 파일 실행 파일리스 다운로드
curl <URL> | python3

# 쉘 스크립트 파일 실행 파일리스 다운로드
curl <URL> | bash

Last updated

Was this helpful?