我怎样才能让 wget 显示文件上传进度?

我怎样才能让 wget 显示文件上传进度?

我使用 wget 通过 POST 方法上传文件。有时文件很大。有没有办法显示进度,就像下载时一样?

答案1

wget没有文件上传的进度条,但curl有。使用-T指定文件,并-#指定您想要进度条。以下是一个例子:

$ dd if=/dev/zero of=file count=4068
4068+0 records in
4068+0 records out
2082816 bytes (2.1 MB) copied, 0.0459911 seconds, 45.3 MB/s
$ curl -T file -# -o output http://pastebin.com/
######################################################################## 100.0%

相关内容