接続とログイン†$ ftp 192.168.0.2 リモートのファイルリストを見る†ftp> ls ローカルのファイルリストを見る†ftp> !ls リモートのディレクトリを変更する†ftp> cd public_html ローカルのディレクトリを変更する†ftp> lcd public_html ファイルをGETする†ftp> get list.txt ファイルをまとめてGETする†ftp> mget *.txt ファイルをPUTする†ftp> put list.txt ファイルをまとめてPUTする†ftp> mput *.txt ディレクトリを作成する†ftp> mkdir public_html 接続を終了する†ftp> quit |