您可以下载文件并获得其大小。但我们可以做得更好。
原文链接:https://www.f2er.com/bash/388938.html使用curl仅使用-I选项获取response header。
在响应头中寻找Content-Length:后面跟着文件的大小(以字节为单位)。
$ URL="http://api.twitter.com/1/statuses/public_timeline.json" $ curl -sI $URL | grep Content-Length Content-Length: 134
$ curl -sI $URL | grep Content-Length | awk '{print $2}' 134