Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ssh
- vscode
- bash
- plugin
- JavaScript
- maVen
- Source
- profile
- grep
- import
- 단축키
- resource
- lsof
- Mac
- 네트워크
- IntelliJ
- 줄바꿈 문자
- port
- Windows
- GIT
- Quartz
- context
- VirtualBox
- Eclipse
- tomcat
- netsh
- find
- xargs
- web.xml
- Windows 10
Archives
- Today
- Total
develog
[bash] wget, curl 로 파일 다운로드 받기 본문
wget
$ wget https://nginx.org/download/nginx-1.24.0.tar.gz
## 특정 디렉토리에 저장
$ wget -P 저장할디렉토리 https://nginx.org/download/nginx-1.24.0.tar.gz
curl
$ curl -O https://nginx.org/download/nginx-1.24.0.tar.gz
Comments