aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* ash: in dotrap(), do not clear gotsig[] for SIGINT if there is no handlerDenis Vlasenko2009-03-191-57/+69
* ash: tentatively fix bug 189.Denis Vlasenko2009-03-191-14/+13
* ash: fix "ash -c 'exec 1>&0'" complaining that fd 0 is busyDenis Vlasenko2009-03-191-4/+10
* modprobe: emit "can't open 'modules.dep': (errno)" instead of "module not found"Denis Vlasenko2009-03-031-2/+2
* ash: make dot command search current directory first, as bash does.Denis Vlasenko2009-02-151-0/+9
* libbb: introduce and use xmalloc_ttyname (-32 in bss).Denis Vlasenko2008-12-231-3/+3
* ash: fix CONFIG_ASH_OPTIMIZE_FOR_SIZE off + high-bit chars caseDenis Vlasenko2008-12-151-10/+15
* ash: remove TODO which seems to actually work now.Denis Vlasenko2008-12-031-8/+8
* ash: finally installed it as /bin/sh on my machine.Denis Vlasenko2008-12-031-67/+131
* ash: add FIXMEDenis Vlasenko2008-11-281-2/+7
* ash: "ash: syntax error: XXX unexpected" -> "ash: syntax error: unexpected XXX"Denis Vlasenko2008-11-281-1/+1
* ash: shrink on top of previous changeDenis Vlasenko2008-11-281-111/+128
* ash: better fix for ash -c 'echo 5&' and ash -c 'sleep 5&'Denis Vlasenko2008-11-281-29/+46
* ash,hush: add TODO for rare build failureDenis Vlasenko2008-11-251-2/+12
* ash: fix bad interaction between ash -c '....&' and bash compatDenis Vlasenko2008-11-251-2/+6
* ash: NTO2 needs #if ENABLE_ASH_BASH_COMPATDenis Vlasenko2008-11-221-0/+2
* ash: fix miscalculation of memory needed for eval treeDenis Vlasenko2008-11-211-33/+35
* ash: fix "while kill -0 $child; do true; done" looping forever.Denis Vlasenko2008-10-271-46/+20
* ash: fix NOEXEC mode - we were forgetting to pass environment!Denis Vlasenko2008-10-201-2/+5
* ash: support &> redirection (bashism). ~90 bytes of codeDenis Vlasenko2008-10-071-49/+68
* ash: some beautification work, no code changesDenis Vlasenko2008-10-061-41/+38
* ash: implement ">&file" bashism. ~100 bytes.Denis Vlasenko2008-10-051-47/+111
* style fixes, no code changesDenis Vlasenko2008-09-271-2/+2
* ash: fix "(cat < file)" hang introduced by rev 22944.Denis Vlasenko2008-08-161-11/+15
* ash: bash compat: "shift $BIGNUM" is equivalent to "shift 1"Denis Vlasenko2008-07-301-1/+1
* ash: fix typoDenis Vlasenko2008-07-261-1/+1
* ash: hopefully close bug 4324. With testcase.Denis Vlasenko2008-07-261-17/+36
* ash: dont allow e.g. exec <&10 to attach to stript's fd!Denis Vlasenko2008-07-251-12/+35
* ash: prevent exec NN>&- from closing fd used for script readingDenis Vlasenko2008-07-241-8/+25
* ash: fix a bug where redirection fds were not closed afterwards.Denis Vlasenko2008-07-241-37/+37
* ash: teach ash about 123>file. It could take only 0..9 beforeDenis Vlasenko2008-07-241-45/+97
* ash: ducument where "no fds > 9 in redirects" limitation is.Denis Vlasenko2008-07-241-3/+4
* ash: ditch dupredirect(), it was only making code harder to read.Denis Vlasenko2008-07-241-28/+24
* ash: explain redirect code a bitDenis Vlasenko2008-07-241-29/+39
* ash: code shrinkDenis Vlasenko2008-07-241-35/+33
* - fix spellingBernhard Reutner-Fischer2008-07-211-3/+3
* ash: small code shrinkDenis Vlasenko2008-07-131-5/+5
* ash: fix segfault in "command -v"Denis Vlasenko2008-07-111-12/+24
* *: rename ATTRIBUTE_XXX to just XXX.Denis Vlasenko2008-07-051-43/+43
* sendmail: fix wrong vfork usage here tooDenis Vlasenko2008-07-011-1/+1
* libbb: shrink monotonic_XXX functions, introduce monotonic_nsDenis Vlasenko2008-06-291-5/+7
* ash: improve commentsDenis Vlasenko2008-06-271-14/+15
* ash: fix very weak $RANDOM generator; and move even more thingsDenis Vlasenko2008-06-271-52/+66
* ash: move stuff out of data/bssDenis Vlasenko2008-06-271-65/+58
* fix breakage found by randomconfigDenis Vlasenko2008-06-231-1/+1
* ash: trivial code readability fixesDenis Vlasenko2008-06-231-9/+8
* ash: improve readability of the code. No real code changes.Denis Vlasenko2008-06-231-9/+9
* ash: optional support for $'...\t...\n...' bashismDenis Vlasenko2008-06-231-29/+88
* ash: minor shrink (mostly smallints) and variable renamingDenis Vlasenko2008-06-221-91/+91
* ash: fix "shift BIGNUM" and "read with no variable name" bugs.Denis Vlasenko2008-06-181-2/+4