summaryrefslogtreecommitdiff
path: root/shell/ash.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* ash: small cosmetic changeDenis Vlasenko2008-06-141-1/+1
* ash: fix ${var/s/r} handling, add testcase.Denis Vlasenko2008-06-141-61/+14
* reword the error msg so people realize that they broke it, they buy itMike Frysinger2008-06-091-1/+1
* ash: optional printf builtin. +25 bytes if off, +35 if on.Denis Vlasenko2008-06-011-5/+9
* - use STD*_FILENO some more. No object-code changesBernhard Reutner-Fischer2008-05-191-1/+1
* - use EXIT_{SUCCESS,FAILURE}. No object-code changesBernhard Reutner-Fischer2008-05-191-1/+1
* ash: more of -Wall fixesDenis Vlasenko2008-05-181-16/+16
* more of -Wall fixes from Cristian Ionescu-Idbohrn.Denis Vlasenko2008-05-151-6/+9
* ash: make set -o and set +o work as in dash/bash.Denis Vlasenko2008-05-061-7/+9
* ash: fix breakage introduced in rev 21481.Denis Vlasenko2008-04-141-18/+45
* ash: speed up NOFORK code in ash by eliminating second find_applet().Denis Vlasenko2008-04-131-21/+23
* ash: add FEATURE_SH_NOFORK supportDenis Vlasenko2008-04-121-0/+18
* ash: do not do find_applet() twice in shellexec/tryexecDenis Vlasenko2008-04-121-22/+20
* shells: do not frocibly enable test, echo and kill _applets_,Denis Vlasenko2008-04-011-22/+3
* ash: support for && and || in [[ expr ]]; add testsuite checksDenis Vlasenko2008-03-251-12/+42
* ash: comment about [[; code style fixes. No code changes.Denis Vlasenko2008-03-251-10/+30
* ash: optional bash-like pattern subst and substring optsDenis Vlasenko2008-03-251-42/+311
* ash: add read -u; fix read -t and read -n; add testsuite entries.Denis Vlasenko2008-03-251-55/+67
* *: fix fallout from -Wunused-parameterDenis Vlasenko2008-03-171-4/+16
* *: add -Wunused-parameter; fix resulting breakageDenis Vlasenko2008-03-171-77/+76
* libbb: introduce and use sigprocmask_allsigs and sigaction_set.Denis Vlasenko2008-03-171-3/+1
* libbb: introduse and use signal_[no_]SA_RESTART_empty_mask and sigaction_setDenis Vlasenko2008-03-121-1/+1
* *: add optimization barrier to all "G trick" locationsDenis Vlasenko2008-02-271-12/+12
* ash: s/ckzmalloc/ckzalloc/Denis Vlasenko2008-02-211-1/+1
* ash: sprinkle a bit more of zeroed allocations.Denis Vlasenko2008-02-211-19/+20
* libbb: introduce and use nonblock_safe_read(). Yay!Denis Vlasenko2008-02-201-4/+7
* ash: introduce and use stzalloc and ckzalloc.Denis Vlasenko2008-02-201-44/+60
* ash: fix fallout from "A=1 B=$A; echo $B" code.Denis Vlasenko2008-02-191-19/+29
* whitespace fixesDenis Vlasenko2008-02-171-1/+1
* ash: handle "A=1 A=2 B=$A; echo $B". closes bug 947.Denis Vlasenko2008-02-151-38/+73
* ash: explain why "set -o BOGUS" doesn't abortDenis Vlasenko2008-02-141-0/+17
* ash: make ash -c 'if set -o barfoo 2>/dev/null; then echo foo; else echo bar;...Denis Vlasenko2008-02-141-11/+25
* ash: fix warning about _GNU_SOURCE being redefined, fix typo in comment.Denis Vlasenko2008-02-121-1/+3
* ash: fix "orwell bug" 1984. Testcase:Denis Vlasenko2008-02-101-55/+48
* ash: readability enhancement, no code changesDenis Vlasenko2008-02-031-15/+20
* ash: code readability enhancements, no real code changesDenis Vlasenko2008-01-291-31/+25
* *: tidy up usage of char **environDenis Vlasenko2008-01-281-1/+0
* libbb: introduce and use safe_waitpid (loops in EINTR)Denis Vlasenko2008-01-021-1/+1
* fix buglets found by randomconfigDenis Vlasenko2007-12-211-0/+2
* ash: reduce global data/bss usageDenis Vlasenko2007-12-161-179/+277
* lineedit: don't violate API if we do simple fgetsDenis Vlasenko2007-12-091-3/+3
* reorganize applet table. Eliminates pointers to names.Denis Vlasenko2007-11-281-14/+16
* ash: make code simpler, and do not do close(-1) - it's rudeDenis Vlasenko2007-11-261-5/+9
* remove echo_main -> bb_echo indirectionDenis Vlasenko2007-11-241-1/+1