word count
This commit is contained in:
parent
70e3cbcdb6
commit
68f7bb4c06
@ -204,6 +204,13 @@ clean-tables: ## Remove tables created during unit or rivers tests
|
|||||||
help: ## Print this help message
|
help: ## Print this help message
|
||||||
@awk -F':.*?## ' '/^[a-z0-9.-]*: *.*## */{printf "%-18s %s\n",$$1,$$2}' $(MAKEFILE_LIST)
|
@awk -F':.*?## ' '/^[a-z0-9.-]*: *.*## */{printf "%-18s %s\n",$$1,$$2}' $(MAKEFILE_LIST)
|
||||||
|
|
||||||
|
.PHONY: wc
|
||||||
|
wc: mj-msc.pdf ## Character and page count
|
||||||
|
@pdftotext $< - | \
|
||||||
|
awk '/\yReferences\y/{exit}; {print}' | \
|
||||||
|
tr -d '[:space:]' | wc -c | \
|
||||||
|
awk '{printf("Chars: %d, pages: %.1f\n", $$1, $$1/1500)}'
|
||||||
|
|
||||||
$(OSM):
|
$(OSM):
|
||||||
wget http://download.geofabrik.de/europe/$@
|
wget http://download.geofabrik.de/europe/$@
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user