From 339341d66a57bcbe20d6288a70be8dc649caf4bc Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Thu, 10 Oct 2019 17:21:41 +0200 Subject: [PATCH] Update Makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aa32d84..692adc7 100644 --- a/Makefile +++ b/Makefile @@ -8,5 +8,6 @@ prepare: ## Download and format csv with domains wget http://s3.amazonaws.com/alexa-static/top-1m.csv.zip unzip top-1m.csv.zip rm top-1m.csv.zip - cat top-1m.csv | sed -n 's/$$/,nil/p' | >> top-1m.csv - mv top-1m.csv resources + cat top-1m.csv | sed -n 's/$$/,nil/p' >> top-1m-temp.csv + mv top-1m-temp.csv resources/top-1m.csv + rm top-1m.csv