aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* ash: fix "char == CTLfoo" comparison signedness bugDenys Vlasenko2018-04-011-3/+3
* ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko2018-04-011-5/+11
* ash: fail if 'shift' operand is out of rangeIngo van Lil2018-02-141-1/+1
* randomconfig fixesDenys Vlasenko2017-12-311-1/+1
* ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko2017-11-031-5/+40
* ash: retain envvars with bad names in initial environment. Closes 10231Denys Vlasenko2017-11-021-4/+22
* 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
* 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: 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-151-2/+3
* ash: one "current line = 1" might be missing, fix thatDenys Vlasenko2017-08-141-4/+5
* ash: [PARSER] Catch variable length expansions on non-existant specialsDenys Vlasenko2017-08-141-3/+9
* ash: fix "unset OPTIND" throwing an error messageDenys Vlasenko2017-08-111-1/+3
* hush: optional times builtinDenys Vlasenko2017-08-101-7/+9
* ash: implement -d DELIM option for readJohannes Schindelin2017-08-091-3/+12
* noexec: consolidate codeDenys Vlasenko2017-08-071-7/+1
* noexec: do GETOPT_RESET() before entering APPLET_main()Denys Vlasenko2017-08-071-0/+1
* noexec: set comm field for noexecsDenys Vlasenko2017-08-071-1/+4
* free,stat: make NOEXECDenys Vlasenko2017-08-071-0/+2
* ash: do not set a signal to SIG_DFL if it already isDenys Vlasenko2017-08-061-1/+7
* ash: BASH_XTRACEFD bashismDenys Vlasenko2017-08-041-0/+10
* ash: remove no-longer-used variableJohannes Schindelin2017-08-041-2/+0
* ash: INT_OFF/INT_ON around run_nofork_applet()Denys Vlasenko2017-08-041-3/+19
* sheel: improve comments on signal handlingDenys Vlasenko2017-08-041-11/+16
* ash: add a fixme comment at run_nofork_appletDenys Vlasenko2017-08-031-1/+3
* line editing: make read_line_input() not take timeout paramDenys Vlasenko2017-08-021-2/+3
* do not use `a' quoting style in commentsDenys Vlasenko2017-08-021-1/+1
* ash: align --login code with dashDenys Vlasenko2017-07-311-13/+17
* ash: fix display of ">&-" redirect in job stringsDenys Vlasenko2017-07-311-1/+8
* ash,hush: ">&10" redirects to script/tty fds should not workDenys Vlasenko2017-07-311-9/+30
* ash: significant overhaul of redirect saving logicDenys Vlasenko2017-07-311-139/+193
* ash: remove REDIR_SAVEFD2Denys Vlasenko2017-07-311-32/+37
* ash: if !ENABLE_ASH_EXPAND_PRMT, disable PSSYNTAX codeDenys Vlasenko2017-07-291-2/+8
* ash: [REDIR] Fix popredir on abnormal exit from built-inDenys Vlasenko2017-07-291-26/+44
* ash: [PARSER] Add FAKEEOFMARK for expandstrDenys Vlasenko2017-07-291-19/+27
* ash: [PARSER] Removed noexpand/length check on eofmarkDenys Vlasenko2017-07-291-70/+41
* ash: "Undo all redirections" comment is wrong, delete itDenys Vlasenko2017-07-291-26/+22
* ash: make tryexec(cmd) parameter const charDenys Vlasenko2017-07-291-4/+4
* ash: support platforms that don't have '%m' printf specifierRon Yorston2017-07-281-5/+17
* ash: less hackish implementation of evaltreenr()Denys Vlasenko2017-07-281-6/+14
* ash: force inlining of a trivial functionDenys Vlasenko2017-07-261-1/+1
* ash: revert previous implementation of "A=1 A=2 B=$A cmd" codeDenys Vlasenko2017-07-261-47/+15
* ash: [VAR] Fix loss of variables when hash collidesDenys Vlasenko2017-07-261-10/+16
* ash: [VAR] Do not poplocalvars prematurely on regular utilitiesDenys Vlasenko2017-07-261-4/+6
* ash: [VAR] Fix poplocalvar on abnormal exit from functionDenys Vlasenko2017-07-261-5/+14