在终端输入ftpget命令,可以得到以下帮助信息:
- BusyBox v1.17.4 (2010-12-22 10:59:18 CST) multi-call binary.
- Usage: ftpget [OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE
- Retrieve a remote file via FTP
- Options:
- -c,--continue Continue previous transfer
- -v,--verbose Verbose
- -u,--username Username
- -p,--password Password
- -P,--port Port number
从192.168.1.8服务器上获取hello.txt文件,服务器端的FTP服务器开启,可以使用以下命令
ftpget -u mm -P mm 192.168.1.8 hello.txt
其中mm为用户名,mm为登录密码。