aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
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
2008-06-01ash: optional printf builtin. +25 bytes if off, +35 if on.Denis Vlasenko
2008-05-19- use STD*_FILENO some more. No object-code changesBernhard Reutner-Fischer
2008-05-19- use EXIT_{SUCCESS,FAILURE}. No object-code changesBernhard Reutner-Fischer
2008-05-18ash: more of -Wall fixesDenis Vlasenko
2008-05-15more of -Wall fixes from Cristian Ionescu-Idbohrn.Denis Vlasenko
2008-05-06ash: make set -o and set +o work as in dash/bash.Denis Vlasenko
2008-04-14ash: fix breakage introduced in rev 21481.Denis Vlasenko
2008-04-13ash: speed up NOFORK code in ash by eliminating second find_applet().Denis Vlasenko
2008-04-12ash: add FEATURE_SH_NOFORK supportDenis Vlasenko
2008-04-12ash: do not do find_applet() twice in shellexec/tryexecDenis Vlasenko
2008-04-01shells: do not frocibly enable test, echo and kill _applets_,Denis Vlasenko
2008-03-25ash: support for && and || in [[ expr ]]; add testsuite checksDenis Vlasenko
2008-03-25ash: comment about [[; code style fixes. No code changes.Denis Vlasenko
2008-03-25ash: optional bash-like pattern subst and substring optsDenis Vlasenko