From fe3e3750a2c6fb068cb7c60152b9874a563a8709 Mon Sep 17 00:00:00 2001 From: curben Date: Thu, 11 Oct 2018 11:41:34 +1030 Subject: [PATCH] Use gunzip instead of zcat alpine's zcat supports only gzip/bzip2/xz not zip --- utils/umbrella-top-1m.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/umbrella-top-1m.sh b/utils/umbrella-top-1m.sh index c58f4110..6f893b72 100755 --- a/utils/umbrella-top-1m.sh +++ b/utils/umbrella-top-1m.sh @@ -8,7 +8,7 @@ wget https://s3-us-west-1.amazonaws.com/umbrella-static/top-1m.csv.zip -O top-1m.csv.zip # Decompress the zip and write output to stdout -zcat -dc top-1m.csv.zip | \ +gunzip -dc top-1m.csv.zip | \ # Parse domains only cut -f 2 -d ',' > ../src/top-1m.txt