"리눅스 FTP 파일 다운로드"의 두 판 사이의 차이

(새 문서: ==wget== ===익명 로그인=== ;명령어 <source lang='bash'> wget FTP_URL </source> ;실행 예시 <source lang='dos'> [root@localhost ~]# wget ftp://ftp.microsoft.com/developr/r...)
 
4번째 줄: 4번째 줄:
;명령어
;명령어
<source lang='bash'>
<source lang='bash'>
wget FTP_URL
wget URL주소
</source>
</source>


23번째 줄: 23번째 줄:


2012-04-16 11:38:03 (3.97 MB/s) - ??readme.txt?? saved [1427]
2012-04-16 11:38:03 (3.97 MB/s) - ??readme.txt?? saved [1427]
</source>
===계정 로그인===
;명령어
<source lang='bash'>
ftp --ftp-user=계정 --ftp-password=패스워드 URL주소
</source>
</source>



2012년 4월 16일 (월) 11:48 판

1 wget

1.1 익명 로그인

명령어
wget URL주소
실행 예시
[root@localhost ~]# wget ftp://ftp.microsoft.com/developr/readme.txt
--2012-04-16 11:37:24--  ftp://ftp.microsoft.com/developr/readme.txt
           => ??readme.txt??
Resolving ftp.microsoft.com... 64.4.30.34
Connecting to ftp.microsoft.com|64.4.30.34|:21... connected.
Logging in as anonymous ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD (1) /developr ... done.
==> SIZE readme.txt ... 1427
==> PASV ... done.    ==> RETR readme.txt ... done.

    [ <=>                                   ] 1,427       --.-K/s   in 0s      

2012-04-16 11:38:03 (3.97 MB/s) - ??readme.txt?? saved [1427]

1.2 계정 로그인

명령어
ftp --ftp-user=계정 --ftp-password=패스워드 URL주소

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}