From 1f5486cee5108ba5b34915864cd72ee8415e2149 Mon Sep 17 00:00:00 2001 From: gregor herrmann Date: Tue, 27 Oct 2020 16:27:44 +0100 Subject: [PATCH] Makefile: log target: filter out "Finished" lines as well --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7a650c1..cb11d5a 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: $(CURDIR) log.csv: log cp $< $@ fromdos $@ - sed -i -e '/Started/ d' -e 's/ O: /,/g' $@ + sed -i -e '/Started/ d' -e '/Finished/ d ' -e 's/ O: /,/g' $@ perl -ni -e 'BEGIN{$$i=0}; print if ($$_ !~ /CO2/ || $$i == 0); $$i++;' $@ .PHONY: log.csv -- 2.39.5