diff options
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -91,3 +91,34 @@ the food compiler parses these files into internal C structures, the errors reported are syntax ones then they can be eval'd which merges any subrecipe ingredients and steps into one plain recipe + +* Test commands to create UX + + #+begin_src bash + # Common options + ## -I /path/:/other/path/:~/.path:and/another/relative/one + + # compile a recipe + # Use it when creating a new recipe to verify it's integridy + # i.e. + # parse the recipe + # resolve any includes + # merge ingredients + # evaluate steps + # + # also accepts files from stdin + recipc [OPTIONS] [FILE...] + + # food + ## the main program thing + ## OPTIONS include: + ### search + ### list + + ## FILE is + # A collection of recipes from the library + # lines are valid food commands (without the executable) + # that return one or more recipes fro the library + # Some way to set common options might be needed (-I specifically) + food [OPTIONS] [FILE] + #+end_src |