You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# ftp
## 说明
**ftp命令** 用来设置文件系统相关功能。ftp服务器在网上较为常见Linux ftp命令的功能是用命令的方式来控制在本地机和远程机之间传送文件
这里详细介绍Linux ftp命令的一些经常使用的命令相信掌握了这些使用Linux进行ftp操作将会非常容易
## 选项
```markdown
-d详细显示指令执行过程便于排错或分析程序执行的情况
-i关闭互动模式不询问任何问题
-g关闭本地主机文件名称支持特殊字符的扩充特性
-n不使用自动登录
-v显示指令执行过程
```
## 实例
```markdown
ftp> ascii # 设定以ASCII方式传送文件(缺省值
ftp> bell # 每完成一次文件传送,报警提示
ftp> binary # 设定以二进制方式传送文件
ftp> bye # 终止主机FTP进程,并退出FTP管理方式
ftp> case # 当为ON时,用MGET命令拷贝的文件名到本地机器中,全部转换为小写字母
ftp> cd # 同UNIX的CD命令
ftp> cdup # 返回上一级目录
ftp> chmod # 改变远端主机的文件权限
ftp> close # 终止远端的FTP进程,返回到FTP命令状态, 所有的宏定义都被删除
ftp> delete # 删除远端主机中的文件
ftp> dir [remote-directory] [local-file] # 列出当前远端主机目录中的文件.如果有本地文件,就将结果写至本地文件
ftp> get [remote-file] [local-file] # 从远端主机中传送至本地主机中
ftp> help [command] # 输出命令的解释
ftp> lcd # 改变当前本地主机的工作目录,如果缺省,就转到当前用户的HOME目录
ftp> ls [remote-directory] [local-file] # 同DIR
ftp> macdef # 定义宏命令
ftp> mdelete [remote-files] # 删除一批文件
ftp> mget [remote-files] # 从远端主机接收一批文件至本地主机
ftp> mkdir directory-name # 在远端主机中建立目录
ftp> open host [port] # 重新建立一个新的连接
ftp> prompt # 交互提示模式
ftp> put local-file [remote-file] # 将本地一个文件传送至远端主机中
ftp> mput local-files # 将本地主机中一批文件传送至远端主机
ftp> pwd # 列出当前远端主机目录
ftp> quit # 同bye、exit
ftp> recv remote-file [local-file] # 同GET
ftp> rename [from] [to] # 改变远端主机中的文件名
ftp> rmdir directory-name # 删除远端主机中的目录
ftp> send local-file [remote-file] # 同PUT
ftp> status # 显示当前FTP的状态
ftp> system # 显示远端主机系统类型
ftp> user user-name [password] [account] # 重新以别的用户名登录远端主机
ftp> ? [command] # 同HELP. [command]指定需要帮助的命令名称。如果没有指定 commandftp 将显示全部命令的列表
ftp> ! # 从 ftp 子系统退出到外壳
```