- b7aaae9 hush: rename ->o_quote to ->o_escape by Denis Vlasenko · 16 years ago
- 7a79afa Arithmetic Expansion is supported now in hush, so drop from TODO by Mike Frysinger · 16 years ago
- f328e00 hush: do not inadvertently parse $((1 + "22")) as ok. -20 bytes code size by Denis Vlasenko · 16 years ago
- 2f1d394 hush: make a=55; echo $(($a + 1)) $((1 + $((2)) + `echo $a`)) work as expected by Denis Vlasenko · 16 years ago
- b29eb6e shells: do not need to have math state global by Denis Vlasenko · 16 years ago
- 0dfe1d2 fix ash-alias/alias.tests failure by Denis Vlasenko · 16 years ago
- 98c5264 split math code out of ash and into a standalone library so we can use it in any shell (like hush!) by Mike Frysinger · 16 years ago
- 551ffdc more of pointless whitespace fixes by Denis Vlasenko · 16 years ago
- d308106 hust_test/*: use "$THIS_SH" instead of hush by Denis Vlasenko · 16 years ago
- f6fbd62 ash: add/improve comments, no code changes by Denis Vlasenko · 16 years ago
- 46aeab9 ash: fix $IFS handling in read. closes bug 235 by Denis Vlasenko · 16 years ago
- 7566bae hush: fix wait builtin by Denis Vlasenko · 16 years ago
- 1b62ead hush: don't lie in comment by Denis Vlasenko · 16 years ago
- 7b830e7 hush: fix comments, no code changes by Denis Vlasenko · 16 years ago
- 422cd7c hush: make ^C work again, ^Z probably isn't working by Denis Vlasenko · 16 years ago
- abedaac hush: do not reset sighaldlers after fork - instead, prevent them from doing any harm by Denis Vlasenko · 16 years ago
- d576293 hush: rework signal and trap handling. Some smaller bits are TODO, by Denis Vlasenko · 16 years ago
- d690f68 implement `unset` semantics as required by POSIX by Mike Frysinger · 16 years ago
- 0080ea7 update `trap` poisx link by Mike Frysinger · 16 years ago
- 87824e0 do not automatically display job information when the shell is not interactive by Mike Frysinger · 16 years ago
- 681a4b7 enable trap tests by Mike Frysinger · 16 years ago
- 9f8128f first pass at `trap` support in hush by Mike Frysinger · 16 years ago
- fd303b1 add test cases for `trap` ... but disabled for now until trap support is committed by Mike Frysinger · 16 years ago
- b975feb mark msh as deprecated by Mike Frysinger · 16 years ago
- 40b8dc4 use bb_strtou() in umask/wait and check errno to see if there was a problem rather than using endp by Mike Frysinger · 16 years ago
- 8ec1c9d make sure we check job status whenever updating the prompt by Mike Frysinger · 16 years ago
- 0b87e4a test for invalid named variables by Mike Frysinger · 16 years ago
- 7c3e52c do not let handle_dollar() accept vars that start with a digit by Mike Frysinger · 16 years ago
- 56bdea1 implement `wait` builtin by Mike Frysinger · 16 years ago
- e61f07f remove ((expr)) bash'ism by Denis Vlasenko · 16 years ago
- 701ac18 randomconfig fix by Denis Vlasenko · 16 years ago
- 5a82845 update the normally disabled debug code around the syntax() func to use new maybe_die() by Mike Frysinger · 16 years ago
- 78f9d8e add hush tests for parameter expansion by Mike Frysinger · 16 years ago
- 6379bb4 implement most POSIX parameter expansions (~+500bytes) by Mike Frysinger · 16 years ago
- 42ab865 make sure we exit based on test failure rather than always exiting with 0 by Mike Frysinger · 16 years ago
- 25a6ca0 split up feature todo by posix/bash by Mike Frysinger · 16 years ago
- ad88d5a unify `set` handling with command line processing, fixup `set` argv processing so it doesnt clobber argv when setting options, and barf on unhandled set options by Mike Frysinger · 16 years ago
- 19a7ea1 handle the "-s" command line option that POSIX requires by Mike Frysinger · 16 years ago
- a71cfa8 rename "-f" (fake) option to "-n" to match POSIX by Mike Frysinger · 16 years ago
- d006edb tweak format modifier in debug code to fixup gcc warning by Mike Frysinger · 16 years ago
- ec2c655 convert some of the ENABLE_FEATURE_EDITING from CPP if to C if by Mike Frysinger · 16 years ago
- 39456a1 stop lying about [[ test support by Mike Frysinger · 16 years ago
- 70a2c8d make lash deprecation more prominent by Mike Frysinger · 16 years ago
- bfc0fae enable most job functions on no-mmu systems by Mike Frysinger · 16 years ago
- b2705e1 do not make startup banner depend on job support by Mike Frysinger · 16 years ago
- ddbee97 move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build error by Mike Frysinger · 16 years ago
- 424f79b hush: rearrange functions to reduce amount of forward references. by Denis Vlasenko · 16 years ago
- e1300f6 hush: fix segv at repeated "set -- a b c" + "shift" by Denis Vlasenko · 16 years ago
- 786ce17 hush: fix strcpy of potentially overlapping strings by Denis Vlasenko · 16 years ago
- ccff0b9 msh testsuite: fix false positive, tweak run stript by Denis Vlasenko · 16 years ago
- feecc7b hush: tweak testsuite by Denis Vlasenko · 16 years ago
- a8b6dff hush: fix bug 207 and "hush -c" parameter passing. by Denis Vlasenko · 16 years ago
- 5368ad5 ash: expand comment by Denis Vlasenko · 16 years ago
- 11fb7cf hush: fix set [--] params. Closes bug 199. by Denis Vlasenko · 16 years ago
- 1bb3d7e ash: add missing comma in debug scaffolding by Denis Vlasenko · 16 years ago
- b9e70dd ash: fix a case where we close wrong descriptor; add debug hack for that by Denis Vlasenko · 16 years ago
- f173395 ash: DEBUG should be 0 :) by Denis Vlasenko · 16 years ago
- b21f379 ash: fix TRACE commands by Denis Vlasenko · 16 years ago
- 653d8e7 ash: make evaltree save/restore int suppression depth. by Denis Vlasenko · 16 years ago
- 731de5c doc update by Denis Vlasenko · 16 years ago
- 4b87570 ash: in dotrap(), do not clear gotsig[] for SIGINT if there is no handler by Denis Vlasenko · 16 years ago
- 7f88e34 ash: tentatively fix bug 189. by Denis Vlasenko · 16 years ago
- 5c2b814 ash: fix "ash -c 'exec 1>&0'" complaining that fd 0 is busy by Denis Vlasenko · 16 years ago
- 73c571a *: move get_sock_lsa and xwrite_str to libbb, use where appropriate by Denis Vlasenko · 16 years ago
- 9604e1b modprobe: emit "can't open 'modules.dep': (errno)" instead of "module not found" by Denis Vlasenko · 16 years ago
- 8ad78e1 ash: make dot command search current directory first, as bash does. by Denis Vlasenko · 16 years ago
- 76ddc2e libbb: add bb_unsetenv (taken from hush). by Denis Vlasenko · 16 years ago
- 4e12b1a libbb: introduce and use xmalloc_ttyname (-32 in bss). ash: small code shrink by Denis Vlasenko · 16 years ago
- 68819d1 ash: fix CONFIG_ASH_OPTIMIZE_FOR_SIZE off + high-bit chars case by Denis Vlasenko · 16 years ago
- 81c3a1d ash: remove TODO which seems to actually work now. no code changes by Denis Vlasenko · 16 years ago
- f8535cc ash: finally installed it as /bin/sh on my machine. by Denis Vlasenko · 16 years ago
- e27dafd ash: add FIXME by Denis Vlasenko · 16 years ago
- 7b2294e ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX" by Denis Vlasenko · 16 years ago
- 41eb300 ash: shrink on top of previous change by Denis Vlasenko · 16 years ago
- 727752d ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&' with testcase by Denis Vlasenko · 16 years ago
- 61befda ash,hush: add TODO for rare build failure *: remove some redundant includes by Denis Vlasenko · 16 years ago
- 1689840 ash: fix bad interaction between ash -c '....&' and bash compat by Denis Vlasenko · 16 years ago
- cc5feab ash: NTO2 needs #if ENABLE_ASH_BASH_COMPAT by Denis Vlasenko · 16 years ago
- 340299a ash: fix miscalculation of memory needed for eval tree by Denis Vlasenko · 16 years ago
- 9504e44 whitespace fixes, no code changes by Denis Vlasenko · 16 years ago
- 6214941 ash: add testcase for bug 5304 by Denis Vlasenko · 16 years ago
- be54d6b ash: fix "while kill -0 $child; do true; done" looping forever. by Denis Vlasenko · 16 years ago
- 0783230 dc: conditionalize parts which require libm by Denis Vlasenko · 16 years ago
- b730474 ash: fix NOEXEC mode - we were forgetting to pass environment! by Denis Vlasenko · 16 years ago
- d1660cb ash: fix a bug in standalone mode (corrupted getopt() state) by Denis Vlasenko · 16 years ago
- ddc8ae3 hush: add TODO by Denis Vlasenko · 16 years ago
- 371de4a hush: next small step towards functions by Denis Vlasenko · 16 years ago
- f886fd2 hush: fix NOMMU bug (analogous to preceding commit for MMU) by Denis Vlasenko · 16 years ago
- d29084d testcase for the last fix by Denis Vlasenko · 16 years ago
- 22d10a0 hush: fix trashing of environment by local env vars: by Denis Vlasenko · 16 years ago
- afd7a8d hush: fix environment and memory leaks, add tests for them by Denis Vlasenko · 16 years ago
- c373527 hush: preparatory work for implementing functions by Denis Vlasenko · 16 years ago
- 9af22c7 hush: massive renaming of ill-named structures and fields by Denis Vlasenko · 16 years ago
- 834dee7 ash: support &> redirection (bashism). ~90 bytes of code by Denis Vlasenko · 16 years ago
- 176d49d ash: some beautification work, no code changes by Denis Vlasenko · 16 years ago
- 559691a ash: implement ">&file" bashism. ~100 bytes. by Denis Vlasenko · 16 years ago
- d6855d1 style fixes, no code changes by Denis Vlasenko · 16 years ago
- 864329d - fix compilation on OSF/1 by Bernhard Reutner-Fischer · 16 years ago
- 34c73c4 ash: fix "(cat < file)" hang introduced by rev 22944. by Denis Vlasenko · 16 years ago
- 1dbc643 - fix typo by Bernhard Reutner-Fischer · 16 years ago