diff options
author | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
---|---|---|
committer | haturatu <taro@eyes4you.org> | 2024-12-10 21:28:04 +0900 |
commit | fe6c36e18042603bb096d3685fe3988e32331ebf (patch) | |
tree | 359c42bed67e5eee7342b2e95810dfe501c69665 /AWK/README |
Diffstat (limited to 'AWK/README')
-rw-r--r-- | AWK/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/AWK/README b/AWK/README new file mode 100644 index 0000000..ff1a834 --- /dev/null +++ b/AWK/README @@ -0,0 +1,16 @@ +This is a (slow) AWK implementation of the basE91 decoder. It decodes from +standard input to standard output. + +Example usage: + + awk -f b91dec.awk < file.b91 > file.bin + or + ./b91dec.awk < file.b91 > file.bin + + +Be careful on non-Unix systems! - During output, some ported versions of awk +automatically convert byte values of 0x0A to the native line break sequence of +the host system (e.g. 0x0D 0x0A under DOS/Windows). This can result in corrupt +binary files. +You should test on some examples and compare the output of b91dec.awk with the +original data before relying on it. |