chiark / gitweb /
Provide test cases for maxlen functions
[secnet.git] / AWK / README
1 This is a (slow) AWK implementation of the basE91 decoder. It decodes from
2 standard input to standard output.
3
4 Example usage:
5
6         awk -f b91dec.awk < file.b91 > file.bin
7   or
8         ./b91dec.awk < file.b91 > file.bin
9
10
11 Be careful on non-Unix systems! - During output, some ported versions of awk
12 automatically convert byte values of 0x0A to the native line break sequence of
13 the host system (e.g. 0x0D 0x0A under DOS/Windows). This can result in corrupt
14 binary files.
15 You should test on some examples and compare the output of b91dec.awk with the
16 original data before relying on it.