我在Linux上运行了一个FTP脚本,但它失败了。这是脚本:
/usr/bin/ftp -v -i -n my.ftp.server << cmd
user ftpuser password
binary
ls
<some other commands here>
quit cmd
它返回错误:
421 Service not available, remote server has closed connection
Not connected.
这里奇怪的是,如果我只是在命令行输入: / usr / bin / ftp my.ftp.server 它要求输入用户名和密码,在我提供之后,我就可以连接了!
在ftp&gt;我输入ls,我可以看到来自FTP服务器的文件。 我的剧本出了什么问题?
而且,我没有腻子访问FTP服务器,所以我无法从那里看到日志。有什么想法吗?
谢谢!
答案 0 :(得分:2)
以下是正确的ftp linux脚本的示例。
#!/bin/sh
HOST='ftp.server.com'
USER='user'
PASSWD='pw'
FILE='file.txt' #sample file to upload
ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
put $FILE #sample command
#some other commands here
quit
END_SCRIPT
exit 0