OPTIONS
-e commands
Execute given commands and don't exit.
[...]
-c commands
Execute the given commands and exit. Commands can be separated with a semicolon, `&&'
or `||'. Remember to quote the commands argument properly in the shell. This option
must be used alone without other arguments (except --norc)
这些选项在手册的... OPTIONS部分中有描述:
该
lftp
命令具有交互模式。如果您使用-c
,lftp
将退出而不启动此交互模式。如果你使用-e
,那么它不会退出,你可以继续手动运行命令。因此,您可以使用它-e
来运行一些初始设置,然后使用交互模式来执行您真正想做的任何事情(尽管您也可以--rcfile
为此使用该选项)。例如
-e
,您可能有如下别名:对于
-c
,基本上只要您有一套完整的命令要执行而lftp
无需提供进一步的手动输入,您都可以使用-c
. 您不需要exit
像链接到的示例答案那样使用,因为lftp
无论如何都会自动退出。