Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 LFTP 进行文件传输。文件传输成功,但在成功的文件传输结束时,仅显示传输的字节数。我还需要知道传输文件所花费的时间。
我正在使用 LFTP,因为我需要在一个命令中提供用户名、密码和所需的 ftp 命令。(lftp -u username,password -e "your command;quit" ftp.site.com).因此,使用其他一些 FTP 守护程序可能不是一种选择。
(lftp -u username,password -e "your command;quit" ftp.site.com).
是否可以使用 LFTP 显示传输时间?
谢谢
使用时间命令。在大多数命令之前使用它,它会给你一个完成该命令所需的时间。
time lftp -u username,password -e "your command;quit" ftp.site.com
输出将是这样的:
real 0m2.963s user 0m0.000s sys 0m0.012s