aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* hush: fix a bug where expand_one_var wasn't restoring 1st char of the encoded...Denys Vlasenko2010-09-091-17/+27
* hush: make parse_dollar flag quited status regardless of glob escaping statusDenys Vlasenko2010-09-091-8/+9
* hush: simplification in parse_stream, parse_stream_dquotedDenys Vlasenko2010-09-091-14/+14
* hush: simplify parse_stream_dquotedDenys Vlasenko2010-09-091-16/+6
* hush: straighten out the logic in parse_streamDenys Vlasenko2010-09-091-17/+10
* hush: eliminate redundant parameter of expand_vars_to_list()Denys Vlasenko2010-09-081-10/+12
* hush: replace flag bytes in struct o_string with bit flagsDenys Vlasenko2010-09-081-36/+40
* hush: remove unused enum typedefDenys Vlasenko2010-09-081-3/+3
* hush: fix set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"Denys Vlasenko2010-09-081-26/+39
* shell: unify endofname() in hush and ashDenys Vlasenko2010-09-071-19/+1
* hush: a few relatively trivial simplificationsDenys Vlasenko2010-09-071-58/+53
* hush: style cleanups. no code changesDenys Vlasenko2010-09-071-18/+16
* hush: revert a recent buggy change which resulted in two HUSH_VERSIONsDenys Vlasenko2010-09-061-6/+5
* fix typo in commentDenys Vlasenko2010-09-061-1/+1
* hush: fix another corner case with backslashes in heredocsDenys Vlasenko2010-09-061-2/+8
* hush: fix backslash and terminator handling in <<[-]["]heredoc["]Denys Vlasenko2010-09-061-5/+11
* hush: fix globbing+backslashes in unquoted $var expansionDenys Vlasenko2010-09-061-73/+61
* hush: remove disabled CMD_SINGLEWORD_NOGLOB_COND, rename o_glob->perform_globDenys Vlasenko2010-09-061-11/+1
* shell: remove lash and bbshDenys Vlasenko2010-09-061-19/+0
* hush: big reordering: move parser functions to the beginning. no code changesDenys Vlasenko2010-09-051-2042/+2042
* hush: rename o_quoted to has_quoted_part; small code shrinkDenys Vlasenko2010-09-051-26/+33
* hush: move variable expansion into a separate function. No logic changesDenys Vlasenko2010-09-051-249/+264
* hush: add support for ${var/pattern/repl}, conditional on bash compatDenys Vlasenko2010-09-051-29/+150
* hush: optimize #[#] and %[%] for speed. size -2 bytes.Denys Vlasenko2010-09-041-12/+10
* hush: fix handling of backslashes in variable assignmentDenys Vlasenko2010-09-041-19/+24
* *: make GNU licensing statement forms more regularDenys Vlasenko2010-08-161-1/+1
* *: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_iDenys Vlasenko2010-08-121-1/+1
* *: mass cosmetic removal of extra empty lines. no code changesDenys Vlasenko2010-07-261-1/+0
* ash: fix $! value when traps are setAlexander Shishkin2010-07-251-2/+2
* hush: move msh/lash config into hush.c, no code changesDenys Vlasenko2010-07-161-0/+14
* ash: move config stuff into ash.c, no code chagesDenys Vlasenko2010-07-161-1/+1
* hush: fix multimple dependent variable expansion casesDenys Vlasenko2010-07-161-28/+80
* hush: make set -x support optionalDenys Vlasenko2010-07-161-8/+147
* hush: add support for set -xDenys Vlasenko2010-07-161-1/+39
* hush: fix typo in commentDenys Vlasenko2010-07-151-1/+1
* hush: fix faloout from previous commitDenys Vlasenko2010-07-151-14/+12
* hush: make pun_pipe loop clearer; fix "cmd | var=`cmd` | cmd" handlingDenys Vlasenko2010-07-141-16/+26
* randomconfig fixesDenys Vlasenko2010-07-051-5/+13
* *: introduce and use xfork() and xvfork()Pascal Bellard2010-07-041-11/+4
* build system: do not rebuild ash and hush on any change to any .c fileDenys Vlasenko2010-06-261-3/+1
* A few minor portability improvementsDan Fandrich2010-06-191-1/+1
* bbconfig: make it independent from printf functionsDenys Vlasenko2010-06-071-1/+1
* shell: consolidate builtin_foo.? into shell_common.?; delete obsolete shellsDenys Vlasenko2010-05-231-2/+0
* hush: trivial code shrinkDenys Vlasenko2010-05-221-20/+21
* hush: reduce #ifdef forest a bit, rename handle_dollar -> parse_dollarDenys Vlasenko2010-05-221-25/+20
* hush: fix hush -c 'echo $0' - was showing empty stringDenys Vlasenko2010-05-221-0/+1
* hush: fix segfault in ${?:N:M}Denys Vlasenko2010-05-221-34/+47
* hush: fix "hush -c 'echo $#'" showing -1Denys Vlasenko2010-05-221-1/+0
* hush: support ${var:EXPR:EXPR}!Denys Vlasenko2010-05-221-42/+88
* hush: fix a nommu todo in recent commitsDenys Vlasenko2010-05-221-25/+37