split up feature todo by posix/bash
authorMike Frysinger <vapier@gentoo.org>
Sat, 28 Mar 2009 13:59:26 +0000 (13:59 -0000)
committerMike Frysinger <vapier@gentoo.org>
Sat, 28 Mar 2009 13:59:26 +0000 (13:59 -0000)
shell/hush.c

index 3565cbca34f08d2cf5c35e71e8683868a468af78..9aeb0f6a8b784d6e3efb7ef43f1474d973e3e83a 100644 (file)
  * handle the recursion implicit in the various substitutions, especially
  * across continuation lines.
  *
- * Bash grammar not implemented: (how many of these were in original sh?)
- *      $_
- *      &> and >& redirection of stdout+stderr
- *      Brace Expansion
- *      Tilde Expansion
- *      fancy forms of Parameter Expansion
+ * POSIX syntax not implemented:
  *      aliases
  *      Arithmetic Expansion
  *      <(list) and >(list) Process Substitution
- *      reserved words: select, function
  *      Here Documents ( << word )
  *      Functions
+ *      Tilde Expansion
+ *      fancy forms of Parameter Expansion: ${var:-val}
+ *
+ * Bash stuff maybe optional enable:
+ *      &> and >& redirection of stdout+stderr
+ *      Brace expansion
+ *      reserved words: [[ ]] function select
+ *
  * Major bugs:
  *      job handling woefully incomplete and buggy (improved --vda)
  * to-do: