summaryrefslogtreecommitdiff
path: root/shell (follow)
Commit message (Expand)AuthorAgeFilesLines
...
| * hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko2018-01-139-12/+15
| * hush: add command2.tests from ash testsDenys Vlasenko2018-01-122-0/+8
| * hush: tweak command -vV printing code, no logic changesDenys Vlasenko2018-01-121-3/+5
| * hush: implement "command -v -V"Denys Vlasenko2018-01-121-31/+84
| * hush: implement "command" builtin (no options are supported yet)Denys Vlasenko2018-01-111-1/+16
| * hush: fix handling of ^C in evalDenys Vlasenko2018-01-115-4/+36
| * hush: fix handling of raw ^C in scripts: "echo ^C"Denys Vlasenko2018-01-115-4/+27
| * hush: remove dead codeDenys Vlasenko2018-01-111-15/+0
| * ash: ALWAYS_INLINE grabstackblock()Denys Vlasenko2018-01-101-1/+1
| * ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INTDenys Vlasenko2018-01-101-13/+25
| * ash: add comment explaining last changeDenys Vlasenko2018-01-091-6/+6
| * ash: fix var_bash5.tests - ${VAR/pattern/repl} constructDenys Vlasenko2018-01-091-25/+72
| * ash: fail if 'shift' operand is out of rangeIngo van Lil2018-01-071-1/+1
| * randomconfig fixesDenys Vlasenko2017-12-312-6/+9
* | Merge branch 'busybox' into mergeRon Yorston2017-11-0310-25/+179
|\|
| * ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko2017-11-035-5/+88
| * ash: retain envvars with bad names in initial environment. Closes 10231Denys Vlasenko2017-11-021-4/+22
| * hush: fix comment parsing in `cmd`, closes 10421Denys Vlasenko2017-10-225-4/+47
| * whitespace fixesDenys Vlasenko2017-10-121-3/+3
| * typo fixDenys Vlasenko2017-10-121-1/+1
| * ash: survive failures in $PS1 expansion. Closes 10371Denys Vlasenko2017-10-121-1/+18
| * use %m printf specifier where appropriateDenys Vlasenko2017-09-291-8/+1
* | Merge branch 'busybox' into mergeRon Yorston2017-09-279-30/+156
|\|
| * regularize format of source file headers, no code changesDenys Vlasenko2017-09-181-6/+6
| * hush: fix false positive in unset.testsDenys Vlasenko2017-08-291-0/+6
| * hush: GETOPT_RESET() _after_ getopts too.Denys Vlasenko2017-08-292-3/+4
| * hush: reuse "OPTIND=..." stringDenys Vlasenko2017-08-291-1/+2
| * hush: fix "getopts" builtin to not be upset by other builtins calling getopt()Denys Vlasenko2017-08-295-15/+133
| * ash: more s/error/perror/ for better error reportingDenys Vlasenko2017-08-231-5/+5
| * ash: when cd fails, say whyJohannes Schindelin2017-08-231-1/+1
| * ash: report reason when a script file could not be openedJohannes Schindelin2017-08-231-1/+1
* | ash: stop assuming that pointers and ints are interchangeableJohannes Schindelin2017-08-311-3/+3
* | ash: avoid assumption about sizeof(long) == sizeof(void *)Johannes Schindelin2017-08-311-1/+1
* | win32: shrink code to detect .exe filesRon Yorston2017-08-301-9/+4
* | Revert "ash: allow long-running nofork applets to be interrupted"Ron Yorston2017-08-221-9/+1
* | Merge branch 'busybox' into mergeRon Yorston2017-08-2234-82/+1422
|\|
| * ash: stage backported LINENO support as a separate patchDenys Vlasenko2017-08-171-0/+498
| * hush: trivial code shrink in builtin_getoptsDenys Vlasenko2017-08-171-4/+5
| * ash: unset OPTARG if getopts exits 1, support OPTERR=0 behaviorDenys Vlasenko2017-08-151-2/+11
| * ash,hush: comment and debug tweaks, no code changesDenys Vlasenko2017-08-152-3/+4
| * ash: one "current line = 1" might be missing, fix thatDenys Vlasenko2017-08-141-4/+5
| * ash: update testsuite (we now error out on ${#=})Denys Vlasenko2017-08-141-1/+1
| * ash: [PARSER] Catch variable length expansions on non-existant specialsDenys Vlasenko2017-08-141-3/+9
| * shell: tweak getopts tests, no code changesDenys Vlasenko2017-08-136-4/+34
| * hush: implement "silent" optstrings of ":opts"Denys Vlasenko2017-08-115-17/+89
| * hush: add a test which fails due to uclibc bug in getopt()Denys Vlasenko2017-08-114-0/+128
| * hush: fix redirect code (was using uninitialized variables)Denys Vlasenko2017-08-111-2/+4
| * shell: add OPTARG poisoning to getopt_optarg.testsDenys Vlasenko2017-08-113-5/+18
| * hush: teach getopts to set/unset OPTARGDenys Vlasenko2017-08-116-6/+73
| * hush: getopts builtinDenys Vlasenko2017-08-117-2/+212