aboutsummaryrefslogtreecommitdiff
path: root/shell (follow)
Commit message (Expand)AuthorAgeFilesLines
* ulimit: set both hard and soft limits by defaultAlexander Shishkin2010-07-271-1/+6
* *: trailing empty lines removedDenys Vlasenko2010-07-261-1/+0
* *: mass cosmetic removal of extra empty lines. no code changesDenys Vlasenko2010-07-262-3/+0
* ash: fix $! value when traps are setAlexander Shishkin2010-07-256-2/+41
* mark Linux-specific configuration optionsJeremie Koenig2010-07-191-0/+1
* hush: move msh/lash config into hush.c, no code changesDenys Vlasenko2010-07-162-23/+14
* cttyhack: move build system bits into cttyhack.c, no code changesDenys Vlasenko2010-07-164-37/+53
* ash: move config stuff into ash.c, no code chagesDenys Vlasenko2010-07-164-110/+126
* hush: fix multimple dependent variable expansion casesDenys Vlasenko2010-07-163-28/+107
* hush: make set -x support optionalDenys Vlasenko2010-07-163-116/+147
* hush: add support for set -xDenys Vlasenko2010-07-161-1/+39
* hush: fix typo in commentDenys Vlasenko2010-07-151-1/+1
* hush: fix faloout from previous commitDenys Vlasenko2010-07-151-14/+12
* hush: make pun_pipe loop clearer; fix "cmd | var=`cmd` | cmd" handlingDenys Vlasenko2010-07-141-16/+26
* randomconfig fixesDenys Vlasenko2010-07-051-5/+13
* *: introduce and use xfork() and xvfork()Pascal Bellard2010-07-041-11/+4
* libbb: introduce and use BB_EXECVP_or_die()Pascal Bellard2010-07-041-2/+1
* ash: fix obscure case of replacing + globbing + backslashesDenys Vlasenko2010-06-263-21/+52
* build system: do not rebuild ash and hush on any change to any .c fileDenys Vlasenko2010-06-262-6/+2
* ash: <> redir should not truncateAndreas Bühmann2010-06-243-1/+7
* A few minor portability improvementsDan Fandrich2010-06-191-1/+1
* ash: times builtin: use unsigned type; take free-of-charge moduloDenys Vlasenko2010-06-181-4/+5
* *: stop defining _GNU_SOURCE in source files, it's in CFLAGS anywayDenys Vlasenko2010-06-181-6/+0
* ash: fix unset in standalone modeDenys Vlasenko2010-06-183-0/+4
* ash: cosmetics, no code changesDenys Vlasenko2010-06-181-23/+7
* *: add INSERTs to *.src files where appropriateDenys Vlasenko2010-06-082-0/+5
* bbconfig: make it independent from printf functionsDenys Vlasenko2010-06-071-1/+1
* typo fixDenys Vlasenko2010-06-071-1/+1
* fix allnoconfigDenys Vlasenko2010-06-061-52/+55
* fix a few goofs uncovered by "make allnoconfig" testingDenys Vlasenko2010-06-061-1/+1
* remove defconfig. Now "make defconfig" simply uses defaults from Config.inDenys Vlasenko2010-06-061-24/+24
* mass renaming Kbuild -> Kbuild.src, Config.in -> Config.srcDenys Vlasenko2010-06-042-0/+0
* ash: rename parsefile->fd to ->pf_fdDenys Vlasenko2010-06-031-15/+15
* ash: fix redirection of fd 0 in scripts are sourced from interactive ashDenys Vlasenko2010-06-033-13/+28
* *: better string sharingDenys Vlasenko2010-06-021-8/+6
* ash: remove one redundant function, improve string sharing, better field namesDenys Vlasenko2010-06-021-55/+57
* shell: consolidate builtin_foo.? into shell_common.?; delete obsolete shellsDenys Vlasenko2010-05-2311-7436/+442
* hush: trivial code shrinkDenys Vlasenko2010-05-221-20/+21
* hush: reduce #ifdef forest a bit, rename handle_dollar -> parse_dollarDenys Vlasenko2010-05-221-25/+20
* hush: fix hush -c 'echo $0' - was showing empty stringDenys Vlasenko2010-05-221-0/+1
* hush: fix segfault in ${?:N:M}Denys Vlasenko2010-05-225-37/+78
* hush: fix "hush -c 'echo $#'" showing -1Denys Vlasenko2010-05-223-2/+11
* hush: support ${var:EXPR:EXPR}!Denys Vlasenko2010-05-223-86/+152
* hush: fix a nommu todo in recent commitsDenys Vlasenko2010-05-221-25/+37
* hush: fix more obscure ${var%...} casesDenys Vlasenko2010-05-225-24/+45
* hush: fix a=abc; c=c; echo ${a%${c}}Denys Vlasenko2010-05-214-60/+75
* hush: handle expansions in ${var?expanded_word} constructsDenys Vlasenko2010-05-213-15/+62
* hush: reorganized TODO comment at topDenys Vlasenko2010-05-211-14/+12
* hush: add a list of unsupported builtinsDenys Vlasenko2010-05-211-0/+2
* hush: handle ${var:NUM:} tooDenys Vlasenko2010-05-213-2/+32