diff options
author | Cody Hiar <cody@hiar.ca> | 2023-03-13 10:44:49 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2023-03-13 10:44:49 -0600 |
commit | f69fe236e09bd3d34975335b091142804001b4ab (patch) | |
tree | 389271d4cc1f6ac169a6a53a5924c4c1c8fc4fc5 /Makefile |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3f84548 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ + +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' + +check_dups: ## Check for bad bookmarks + perl -wln -e '/\[\d+\]/ and print $$&;' README.md | sort | uniq -c | sort -n |