aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2009-03-03modprobe: emit "can't open 'modules.dep': (errno)" instead of "module not found"Denis Vlasenko
2009-02-15ash: make dot command search current directory first, as bash does.Denis Vlasenko
2008-12-23libbb: introduce and use xmalloc_ttyname (-32 in bss).Denis Vlasenko
2008-12-15ash: fix CONFIG_ASH_OPTIMIZE_FOR_SIZE off + high-bit chars caseDenis Vlasenko
2008-12-03ash: remove TODO which seems to actually work now.Denis Vlasenko
2008-12-03ash: finally installed it as /bin/sh on my machine.Denis Vlasenko
2008-11-28ash: add FIXMEDenis Vlasenko
2008-11-28ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX"Denis Vlasenko
2008-11-28ash: shrink on top of previous changeDenis Vlasenko
2008-11-28ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&'Denis Vlasenko
2008-11-25ash,hush: add TODO for rare build failureDenis Vlasenko
2008-11-25ash: fix bad interaction between ash -c '....&' and bash compatDenis Vlasenko
2008-11-22ash: NTO2 needs #if ENABLE_ASH_BASH_COMPATDenis Vlasenko
2008-11-21ash: fix miscalculation of memory needed for eval treeDenis Vlasenko
2008-10-27ash: fix "while kill -0 $child; do true; done" looping forever.Denis Vlasenko
2008-10-20ash: fix NOEXEC mode - we were forgetting to pass environment!Denis Vlasenko
2008-10-07ash: support &> redirection (bashism). ~90 bytes of codeDenis Vlasenko
2008-10-06ash: some beautification work, no code changesDenis Vlasenko
2008-10-05ash: implement ">&file" bashism. ~100 bytes.Denis Vlasenko
2008-09-27style fixes, no code changesDenis Vlasenko
2008-08-16ash: fix "(cat < file)" hang introduced by rev 22944.Denis Vlasenko
2008-07-30ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1"Denis Vlasenko
2008-07-26ash: fix typoDenis Vlasenko
2008-07-26ash: hopefully close bug 4324. With testcase.Denis Vlasenko
2008-07-25ash: dont allow e.g. exec <&10 to attach to stript's fd!Denis Vlasenko
2008-07-24ash: prevent exec NN>&- from closing fd used for script readingDenis Vlasenko
2008-07-24ash: fix a bug where redirection fds were not closed afterwards.Denis Vlasenko
2008-07-24ash: teach ash about 123>file. It could take only 0..9 beforeDenis Vlasenko
2008-07-24ash: ducument where "no fds > 9 in redirects" limitation is.Denis Vlasenko
2008-07-24ash: ditch dupredirect(), it was only making code harder to read.Denis Vlasenko
2008-07-24ash: explain redirect code a bitDenis Vlasenko
2008-07-24ash: code shrinkDenis Vlasenko
2008-07-21- fix spellingBernhard Reutner-Fischer
2008-07-13ash: small code shrinkDenis Vlasenko
2008-07-11ash: fix segfault in "command -v"Denis Vlasenko
2008-07-05*: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko
2008-07-01sendmail: fix wrong vfork usage here tooDenis Vlasenko
2008-06-29libbb: shrink monotonic_XXX functions, introduce monotonic_nsDenis Vlasenko
2008-06-27ash: improve commentsDenis Vlasenko
2008-06-27ash: fix very weak $RANDOM generator; and move even more thingsDenis Vlasenko
2008-06-27ash: move stuff out of data/bssDenis Vlasenko
2008-06-23fix breakage found by randomconfigDenis Vlasenko
2008-06-23ash: trivial code readability fixesDenis Vlasenko
2008-06-23ash: improve readability of the code. No real code changes.Denis Vlasenko
2008-06-23ash: optional support for $'...\t...\n...' bashismDenis Vlasenko
2008-06-22ash: minor shrink (mostly smallints) and variable renamingDenis Vlasenko
2008-06-18ash: fix "shift BIGNUM" and "read with no variable name" bugs.Denis Vlasenko
2008-06-14ash: small cosmetic changeDenis Vlasenko
2008-06-14ash: fix ${var/s/r} handling, add testcase.Denis Vlasenko
2008-06-09reword the error msg so people realize that they broke it, they buy itMike Frysinger