From: Mike Frysinger Date: Sat, 28 Mar 2009 13:59:26 +0000 (-0000) Subject: split up feature todo by posix/bash X-Git-Tag: 1_14_0~176 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=25a6ca0dd4866d9b8e6cf140b119e1c434859719;p=oweals%2Fbusybox.git split up feature todo by posix/bash --- diff --git a/shell/hush.c b/shell/hush.c index 3565cbca3..9aeb0f6a8 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -36,18 +36,20 @@ * 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: