Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
コマンド | 説明 |
---|---|
fpt | FTP(File Transfer Protocol)を利用してファイルを転送します。 |
以下の例では、
ホスト | example.com |
---|---|
ユーザー | ftpuser |
としてログインします。(適宜、読み替えてください)
% ftp ftp> open example.com Connected to example.com. 220 FTP Server ready. Name (example.com:hoge): ftpuser
331 Password required for ftpuser Password: 230 User ftpuser logged in. Remote system type is UNIX. Using binary mode to transfer files.
ftp> ls
dir も同じ
500 Illegal PORT command or 421 Service not available, remote server has closed connection
ftp> passive Passive mode on.
ftp> pwd
ftp> !pwd
ftp> ls
ftp> !ls
ftp> cd
ftp> lcd
ftp> type Using binary mode to transfer files.
ftp> bin 200 Type set to I
ftp> asc 200 Type set to A
ftp> put hoge
リモートのカレントディレクトリにアップロードされます
ftp> mput hoge* mput hoge1?
リモートのカレントディレクトリにアップロードされます
ftp> get hoge
ローカルのカレントディレクトリにダウンロードされます
ftp> mget hoge* mput hoge1?
ローカルのカレントディレクトリにダウンロードされます
ftp> prompt Interactive mode off.
トグルなので、コマンドを打つたびに on/off が切り替わる
ftp> bye