Errata

Various known bugs and problems:

APE BUGS

  • sed: if no trailing new line there is no output. Newlines are terminators, not separators; a text file without a final newline is malformed and you get undefined results. eg.,:
# echo foo |sed 's/o/x/'
fxo
# echo -n foo |sed 's/o/x/'
#