Files
learngo/27-functional-programming/log-parser-exp/Makefile

25 lines
431 B
Makefile
Raw Normal View History

2019-08-08 14:11:54 +03:00
SHELL := /bin/bash
LINES = echo -e ">> log.txt has $$(wc -l log.txt | cut -f1 -d' ') lines"
ifeq ($(n),)
n := 18
endif
s:
time go run . < log.txt
r:
go run . < log.txt
# make n=18
load: restore
@echo "enlarging the file with itself, please wait..."
@for i in {1..$(n)}; do awk 1 log.txt log.txt > log_.txt; mv log_.txt log.txt; rm -f log_.txt; done
@$(LINES)
restore:
@$(LINES)
git checkout log.txt
lines:
@$(LINES)