1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 13:26:05 +02:00

ftp: add Chinese translation

This commit is contained in:
Starccy 2019-03-11 10:38:26 +08:00 committed by Starbeamrainbowlabs
parent 43474ac56b
commit c193122f62

35
pages.zh/windows/ftp.md Normal file
View file

@ -0,0 +1,35 @@
# ftp
> 在本地和远程FTP服务器之间交互式传输文件.
- 交互式连接一个远程的FTP服务:
`ftp {{主机名}}`
- 匿名登录:
`ftp -A {{主机名}}`
- 初始连接时禁用自动登录:
`ftp -n {{主机名}}`
- 运行包含FTP命令列表的文件:
`ftp -s:{{文件的路径}} {{主机名}}`
- 下载多个文件 (通配符表达式):
`mget {{*.png}}`
- 上传多个文件 (通配符表达式):
`mput {{*.zip}}`
- 在远程服务器上删除多个文件:
`mdelete {{*.txt}}`
- 显示详细的帮助:
`ftp --help`