Add Makefile to generate test data

This commit is contained in:
Patrick Winter 2019-09-02 22:17:46 +02:00
parent 195a9a5ded
commit ba70b44e25

4
Makefile Normal file
View file

@ -0,0 +1,4 @@
.PHONY: test-data
test-data: ## Generate some example tasks
for n in $$(seq 10); do task add "Example task $${n}"; done