在Linux中执行FTP命令文件

时间:2018-08-02 10:29:29

标签: linux shell ftp

如标题中所述,我要登录ftp服务器并使用ftp命令运行本地FTP命令文件,这是一个通过php执行的命令。我过去使用sftp进行过此操作,但是没有使用ftp进行过此操作。

我想实现为sftp做的以下事情:

sftp -b commands.txt user@host

commands.txt文件包含要在服务器中运行的ftp命令(例如mget

1 个答案:

答案 0 :(得分:1)

通用Linux ftp没有提供脚本文件的任何选项。

但是您可以改用standard input redirection

ftp < commands.txt