wgetのビットごとのログの削除

wgetのビットごとのログの削除

wgetファイルのbashコマンドを生成するPHPスクリプトがあります。次のコマンドを使用してwgetアクティビティを記録しようとしています。

--directory-prefix='xxx' --append-output='xxx.txt' -c -t0 -S"

ただし、次の理由でログが大きすぎます。

 0K .......... .......... .......... .......... ..........  0%  110K 14m5s
50K .......... .......... .......... .......... ..........  0%  230K 10m24s
100K .......... .......... .......... .......... ..........  0%  272K 8m49s
150K .......... .......... .......... .......... ..........  0% 41.7K 15m53s
200K .......... .......... .......... .......... ..........  0%  173M 12m42s
.
.
.
92800K .......... .......... .......... .......... .......... 99%  156K 0s
92850K .......... .......... ...                             100%  139K=7m56s

上記の出力を削除し、wgetに次のものを取得させることができます。

Warning: wildcards not supported in HTTP.
--2015-03-14 20:10:22--  xxxx
Resolving xxxx... xxxx
Connecting to xxxx|xxxx|:80... connected.
HTTP request sent, awaiting response... 
  HTTP/1.1 401 Unauthorized
  Server: nginx/1.4.4
  Date: Sat, 14 Mar 2015 12:09:58 GMT
  Content-Type: text/html
  Content-Length: 194
  Connection: keep-alive
  WWW-Authenticate: Basic realm="xxxx"
Reusing existing connection to xxxx:80.
HTTP request sent, awaiting response... 
  HTTP/1.1 200 OK
  Server: nginx/1.4.4
  Date: Sat, 14 Mar 2015 12:09:58 GMT
  Content-Type: application/octet-stream
  Content-Length: 95102657
  Last-Modified: Sun, 02 Mar 2014 04:54:04 GMT
  Connection: keep-alive
  ETag: "5312b96c-5ab26c1"
  Accept-Ranges: bytes
Length: 95102657 (91M) [application/octet-stream]
Saving to: `xxxx.mkv'
Warning: wildcards not supported in HTTP.
--2015-03-14 20:10:22--  xxxx
Resolving xxxx... xxxx
Connecting to xxxx|xxxx|:80... connected.
HTTP request sent, awaiting response... 
  HTTP/1.1 401 Unauthorized
  Server: nginx/1.4.4
  Date: Sat, 14 Mar 2015 12:09:58 GMT
  Content-Type: text/html
  Content-Length: 194
  Connection: keep-alive
  WWW-Authenticate: Basic realm="xxxx"
Reusing existing connection to xxxx:80.
HTTP request sent, awaiting response... 
  HTTP/1.1 200 OK
  Server: nginx/1.4.4
  Date: Sat, 14 Mar 2015 12:09:58 GMT
  Content-Type: application/octet-stream
  Content-Length: 95102657
  Last-Modified: Sun, 02 Mar 2014 04:54:04 GMT
  Connection: keep-alive
  ETag: "5312b96c-5ab26c1"
  Accept-Ranges: bytes
Length: 95102657 (91M) [application/octet-stream]
Saving to: `xxxx.mkv'

2015-03-14 20:18:19 (195 KB/s) - `xxxx.mkv' saved [95102657/95102657]

実際の詳細に興味がある場合は、このログにのみ余分なスペースを費やすことになります。

ベストアンサー1

以下を使用して一括出力をオフにできます。-nvオプション。これが冗長すぎる場合は、次を使用して進行状況レポートを調整できます。--progressオプションしかし、完全に削除することはできないようです。レポートdot:megaスタイルは、デフォルトの1kBではなく64kBごとにポイントを生成します。

wget --progress=dot:mega …

最新バージョンもこれをサポートしますdot:giga(1 MBあたり1ポイント)。

おすすめ記事