From 205c17ecec44f673b00af702b242d1761fa22835 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 15 Sep 2019 10:06:57 -0400 Subject: [PATCH] readme --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index c9138e9..92b43ca 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,29 @@ I love using `Makefile`s for one-off tasks in projects. The problem with doing this, is you can't use familiar bash–isms when doing so, as GNU Make doesn't use the familiar Bash sytnax. This project seeks to bridge these works. +## Example `Bashfile` + +To be improved: + + echo: + cat Bashfile + format: + black . + + full-install: system-deps python-deps + install: node-deps python-deps + + python-deps: + # Example of comments + pipenv install + node-deps: + yarn install + + system-deps: + brew install pipenv + +Unlike `Makefile`s, either tabs or 4 spaces can be used. + ## Installation Install `bashf` via: