Errata -Diff-


Tue May 26 18:04:46 CES 2026, someone

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/'
#

Thu Sep 27 02:02:34 CES 2012, geoff

Various known bugs and problems:

APE BUGS

# echo foo |sed 's/o/x/'
fxo
# echo -n foo |sed 's/o/x/'
#