wget
설명
웹 상에 존재하는 파일을 링크주소로 다운받는 명령어.
HTTP , 1HTTPS , FTP을 사용해서 파일을 내려받는다.
명령어
wget [option] [다운받을 URL]
[option]
실습
1) wget을 이용해 압축파일 다운받기
[root@localhost test]# wget http://www.openwall.com/john/j/john-1.8.0.tar.gz
http://www.openwall.com/john/j/ 경로에 있는 john-1.8.0.tar.gz 압축파일을 현재 경로에 다운.
--2017-11-09 11:35:02-- http://www.openwall.com/john/j/john-1.8.0.tar.gz
Resolving www.openwall.com... 195.42.179.202
Connecting to www.openwall.com|195.42.179.202|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5450412 (5.2M) [application/x-tar]
Saving to: `john-1.8.0.tar.gz'
100%[=========================================>] 5,450,412 523K/s in 13s
2017-11-09 11:35:15 (422 KB/s) - `john-1.8.0.tar.gz' saved [5450412/5450412]
[root@localhost test]# ls -l
합계 5340
-rw-r--r--. 1 root root 10240 2017-11-08 21:46 alzip.tar
-rw-r--r--. 1 root root 5450412 2013-05-30 13:22 john-1.8.0.tar.gz
현재 경로에 다운 된 john 파일을 확인할 수 있다.
2) 올바른 링크 확인하기
[root@localhost test]# wget --spider http://www.openwall.com/john/j/john-1.8.0.tar.gz
Spider mode enabled. Check if remote file exists.
--2017-11-09 11:44:07-- http://www.openwall.com/john/j/john-1.8.0.tar.gz
Resolving www.openwall.com... 195.42.179.202
Connecting to www.openwall.com|195.42.179.202|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5450412 (5.2M) [application/x-tar]
Remote file exists.
위와같은 문구가 출력 된다면 올바른 링크이다.
'리눅스 > 명령어' 카테고리의 다른 글
[압축관련 - tar] (0) | 2017.11.08 |
---|---|
[시스템 모니터링 - TOP] (0) | 2017.11.08 |
[메모리 상태 확인 - vmstat] (0) | 2017.11.05 |
[백그라운드 프로세스 - nohup] (0) | 2017.11.05 |
[프로세스 우선순위 - nice , renice] (0) | 2017.11.05 |