我想从 lftp 的 !find 命令的结果中放入文件。
我试过了:
$> lftp -u foo, sftp://bar
lftp foo@bar$> put < !find ./local -type f
但是失败了!!
这有效:
$> lftp -u foo, sftp://bar
lftp foo@bar$> !find ./local -type f | awk '{print "put "$1}' > /tmp/files.lftp
lftp foo@bar$> source /tmp/files.lftp
有没有别的办法!?我想使用标准输入输出重定向(管道、标准输入...)。