OpenBSD ed(1) for DOS ===================== * Introduction * Documentation * Hints Introduction ============ This is portable OpenBSD ed(1) version 7.4 compiled for DOS. It is compiled using the tiny-regex-c regular expression library. Documentation ============= * ed.txt tutorial from Coherent manual version 11 * doc/oed.txt * doc/tinyre.txt * Hints ===== * tiny-regex-c requires + to be escaped in the following regex. OLD: s/^+/-/ NEW: s/^\+/-/ * oed requires an address after the 't' command. Specify the current line with '.' OLD: /tea/t NEW: /tea/t. * DOS doesn't really do pipes OLD: printf ",p\n" | ed TODO.txt NEW: echo ,p>input.txt NEW: oed TODO.txt tmp.txt NEW: r tmp.txt