diff options
author | lassulus <lassulus@googlemail.com> | 2013-11-06 19:04:23 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2013-11-06 19:04:23 +0100 |
commit | cd7baeae99a1e3835a9af1f00bbbcd442cea27e2 (patch) | |
tree | 6fdf29b7c5cff3400267f0c395a3012dd8d06f93 | |
parent | bbab9d41b9574d65506d4b6cf73371e52b6026e9 (diff) | |
parent | b50fa72fc286a2302d90e137b738911cae9aebf0 (diff) |
Merge branch 'master' of github.com:krebscode/painload
-rw-r--r-- | ship/README.markdown | 42 |
1 files changed, 38 insertions, 4 deletions
diff --git a/ship/README.markdown b/ship/README.markdown index 2882f732..a84f542c 100644 --- a/ship/README.markdown +++ b/ship/README.markdown @@ -1,20 +1,54 @@ # ship - shellscript installation processor + This utility is used to build modular shell scripts using recursive macro + expansion. + +## Quickstart Guide + + BUILD_PATH=libs ./build compile INPUTFILE OUTPUTFILE + + If this doesn't make science to you, then prepend `debug=true` to get all + the intermediate files printed to stdout. ## Make Interface - Build all executables from `src/` into `tmp/`: + Put libraries into `lib`. + Put executables into `src`. + + Build all executables from `src` into `tmp` with make [all] - Build all executables into `tmp/` and `//bin/`: + Build all executables from `src` into `tmp` and `//bin` with make install - Undo `make [all]`: + Undo `make [all]` with make clean - Undo `make install`: + Undo `make install` with make distclean + +## Macro Development + + To define a new macro, you have to add a function like + + ## usage: BRE -> FUNCTION_NAME \1 [\2 ...] + + where `BRE` is a basic regular expression, that has to match a whole + line. `FUNCTION_NAME` should be the name of a function that outputs + a `sed` script. `\1` refers to the line number, where the macro is + used and `\2 ...` are the backreferences into `BRE`. E.g. + + ## usage: #@date \([.*]\) -> build_datemacro \1 \2 + build_datemacro() { + printf '%da\\\n%s\n' "$1" "$(date +"$2")" + } + + Like in this example, the line number `\1`, which gets mapped to `$1`, + is usually used to only change the line, where the macro got called. + The second argument gets passed as format specifier to `date`. + + Further examples can be found in `./build`. |