diff options
author | Case Duckworth | 2019-07-01 17:29:10 -0500 |
---|---|---|
committer | Case Duckworth | 2019-07-01 17:29:37 -0500 |
commit | 1d8746228690eaece8f31626aea25406e426720f (patch) | |
tree | 187a9bb80214bec000153d28fbca947d1bd8bcdd | |
parent | Update byte counts (diff) | |
download | unk-1d8746228690eaece8f31626aea25406e426720f.tar.gz unk-1d8746228690eaece8f31626aea25406e426720f.zip |
Abort on error
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | unk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 0c54bcb..34560fd 100644 --- a/README.md +++ b/README.md | |||
@@ -9,7 +9,7 @@ that all fits within 1000 bytes. | |||
9 | There are three main scripts: | 9 | There are three main scripts: |
10 | 10 | ||
11 | <ul> | 11 | <ul> |
12 | <li><strong>UNK</strong> (250 bytes), a bash script that applies | 12 | <li><strong>UNK</strong> (253 bytes), a bash script that applies |
13 | the template to each page and publishes them to the output dir,</li> | 13 | the template to each page and publishes them to the output dir,</li> |
14 | <li><strong>LHT</strong> (241 bytes), an awk script that serves as | 14 | <li><strong>LHT</strong> (241 bytes), an awk script that serves as |
15 | a (very) basic markup language, and</li> | 15 | a (very) basic markup language, and</li> |
diff --git a/unk b/unk index 2cf2164..3c9e749 100755 --- a/unk +++ b/unk | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh -e |
2 | alias c=cat q=test e=echo | 2 | alias c=cat q=test e=echo |
3 | rm -rf O;mkdir -p O | 3 | rm -rf O;mkdir -p O |
4 | q -f TM||e '`<$F`'>TM | 4 | q -f TM||e '`<$F`'>TM |