标签:执行 不能 local 注意 1.2 匿名用户 连接 服务 ftp
1.连接ftpftp 192.168.1.2
提醒:分别输入用户名和密码进行认证;
特别注意:如果FTP 允许匿名用户,那么用户名要输入anonymous,密码任意。 不能直接敲回车。
ftp > help
#查看指定命令的帮助信息
ftp > help put
1)get remote-file local-file
将一个文件从远程主机中下载到本地主机中
例如:获取远程服务器上/usr/1.txt
ftp > get /usr/1.txt
2) mget
从远程主机下载一批文件至本地主机中
例如:获取远程服务器上/usr/下所有文件
ftp > cd /usr/
ftp > mget .
提醒:此时每下载一个文件都会提示,可以在mget命令执行前执行 prompt off 来关闭提示
ftp > !
1) put
put local-file remote-file
将本地一个文件上传至远端主机中
例如:将本地文件1.html上传到远程主机/usr/目录下,并重命名为2.html
ftp > put 1.html /usr/2.html
2) mput
将本地主机中一批文件上传至远程主机中
例如:将本地当前目录下所有html文件上传至远程服务器/usr/下
ftp > cd /usr/
ftp > mput *.html
ftp > pwd
ftp > lcd
ftp > mkdir remote-file
ftp > cd remote-file
指定的单个文件:
ftp > delete file1.txt
批量删除txt文件:
ftp > delete *.txt
ftp > bye
标签:执行 不能 local 注意 1.2 匿名用户 连接 服务 ftp
原文地址:http://blog.51cto.com/10316297/2342765