用来设置文件系统相关功能
补充说明
ftp命令 用来设置文件系统相关功能。ftp服务器在网上较为常见,Linux ftp命令的功能是用命令的方式来控制在本地机和远程机之间传送文件,这里详细介绍Linux ftp命令的一些经常使用的命令,相信掌握了这些使用Linux进行ftp操作将会非常容易。
语法
选项
1 2 3 4 5
| -d:详细显示指令执行过程,便于排错或分析程序执行的情况; -i:关闭互动模式,不询问任何问题; -g:关闭本地主机文件名称支持特殊字符的扩充特性; -n:不使用自动登录; -v:显示指令执行过程。
|
参数
主机:指定要连接的FTP服务器的主机名或ip地址。
实例
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 32 33 34
| ftp> ascii ftp> bell ftp> binary ftp> bye ftp> case ftp> cd ftp> cdup ftp> chmod ftp> close ftp> delete ftp> dir [remote-directory] [local-file] ftp> get [remote-file] [local-file] ftp> help [command] ftp> lcd ftp> ls [remote-directory] [local-file] ftp> macdef ftp> mdelete [remote-files] ftp> mget [remote-files] ftp> mkdir directory-name ftp> mput local-files ftp> open host [port] ftp> prompt ftp> put local-file [remote-file] ftp> pwd ftp> quit ftp> recv remote-file [local-file] ftp> rename [from] [to] ftp> rmdir directory-name ftp> send local-file [remote-file] ftp> status ftp> system ftp> user user-name [password] [account] ftp> ? [command] ftp> !
|
FTP 匿名登录账号密码
1 2
| 账号:anonymous 密码: anonymous@
|
关闭FTP连接
下载文件
1 2
| ftp> get readme.txt ftp> mget *.txt
|
上传文件
1 2
| ftp> put /path/readme.txt ftp> mput *.txt
|