From 41e7186b012e864c6252e5c5a415fb4379503bfd Mon Sep 17 00:00:00 2001
From: Rob Landley
Partly because toybox's maintainer has his own corollary to Moore's law: -50% of what you know about programming the hardware is obsolete every 18 +50% of what you know about programming is obsolete every 18 months, but the advantage of C & Unix it's usually the same 50% cycling out over and over.
@@ -563,7 +563,7 @@ feeding the compiler -funsigned-char.The reason to pick "unsigned" is that way char strings are 8-bit clean by default, which makes UTF-8 support easier.
-Error messages are extremely terse not just to save bytes, but because we don't use any sort of _("string") translation infrastructure. (We're not @@ -602,6 +602,18 @@ of it.)
Someday we should probably have translated --help text, but that's a post-1.0 issue.
+Each command's help text tries to briefly answer the questions "what does +this command do" and "how do I use it". There's a usage: line, basic +description, list of command line options (mostly in alphabetical order), +and sometimes additional explanation at the end. Default values and --longopts +are usually in parentheses on the end of an option's explanation line.
+ +Toybox silently accepts a lot of compatibility flags like patch -u +that aren't in the help text to work with existing scripts, but may not +mention options that don't help write new scripts (mostly synonyms and NOPs).
+Toybox's policy on shared libraries is that they should never be