aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2017-08-07noexec: consolidate codeDenys Vlasenko
2017-08-07noexec: do GETOPT_RESET() before entering APPLET_main()Denys Vlasenko
2017-08-07noexec: set comm field for noexecsDenys Vlasenko
2017-08-07free,stat: make NOEXECDenys Vlasenko
2017-08-04sheel: improve comments on signal handlingDenys Vlasenko
2017-08-02hush: do not accept "if() { echo; }" function defDenys Vlasenko
2017-08-02line editing: make read_line_input() not take timeout paramDenys Vlasenko
2017-08-02hush: make SIGINT handling visually less confusingDenys Vlasenko
2017-08-02NOFORK fixesDenys Vlasenko
2017-07-31hush: remove redundant "G_flag_return_in_progress = -1"Denys Vlasenko
2017-07-31hush: fix "true | func_with_return" not allowing return.Denys Vlasenko
2017-07-31hush: functions have priority over builtins (!)Denys Vlasenko
2017-07-31hush: if STANDALONE, close interactive fd for NOEXECed childrenDenys Vlasenko
2017-07-31ash,hush: ">&10" redirects to script/tty fds should not workDenys Vlasenko
2017-07-31hush: massage redirect code to be slightly more like ashDenys Vlasenko
2017-07-29hush: fix handling of empty heredoc EOF markerDenys Vlasenko
2017-07-26hush: fix ${##}, ${#?}, ${#!} handlingDenys Vlasenko
2017-07-25ash: allow "trap NUM [SIG]..." syntaxDenys Vlasenko
2017-07-25hush: treat ${#?} as "length of $?"Denys Vlasenko
2017-07-24hush: fix a case when redirect to a closed fd #1 is not restoring (closing) itDenys Vlasenko
2017-07-24hush: use mempcpy where usefulDenys Vlasenko
2017-07-21config: deindent all help textsDenys Vlasenko
2017-07-18hush: remove contradicting size info in config helpDenys Vlasenko
2017-07-18Update menuconfig items with approximate applet sizesDenys Vlasenko
2017-07-18hush: tweak "help" outputDenys Vlasenko
2017-07-18hush: fix readonly2.tests failureDenys Vlasenko
2017-07-18hush: do not assign to readonly VAR in "VAR=VAL CMD" syntax tooDenys Vlasenko
2017-07-18hush: add readonly testcase, fix falloutDenys Vlasenko
2017-07-18hush: convert exp/ro/local parameters to bitfields in one flag paramDenys Vlasenko
2017-07-17hush: HUSH_READONLY depends on HUSHDenys Vlasenko
2017-07-17hush: forgot to emit error on (failing) second "readonly VAR=VAL"Denys Vlasenko
2017-07-17hush: smaller code in !READONLY configsDenys Vlasenko
2017-07-17hush: implement "readonly" builtinDenys Vlasenko
2017-07-17hush: small fix to last commitDenys Vlasenko
2017-07-17hush: support ${VAR:N:-M}Denys Vlasenko
2017-07-17shells: expand TODO comments, no code changesDenys Vlasenko
2017-07-16hush: fix "cmd1 && cmd2 &" handling on NOMMUDenys Vlasenko
2017-07-15hush: fix and_or_and_backgrounding.tests failureDenys Vlasenko
2017-07-14hush: make "wait %1" work even if the job is deadDenys Vlasenko
2017-07-14hush: remove superfluous comparisonDenys Vlasenko
2017-07-14hush: add support for "set -e"Denys Vlasenko
2017-07-10hush: add TODO for "set -e"Denys Vlasenko
2017-07-10hush: simplify insert_job_into_table() a bitDenys Vlasenko
2017-07-10hush: rename a few functionsDenys Vlasenko
2017-07-08hush: explain why wait5.tests is failingDenys Vlasenko
2017-07-07hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"Denys Vlasenko
2017-07-07hush: fix two redirection testcase failuresDenys Vlasenko
2017-07-07main: fix the case where user has "halt" as login shell. Closes 9986Denys Vlasenko
2017-07-06hush: add a TODO about redir3.tests failureDenys Vlasenko
2017-07-06hush: Print error messages on shift -1Denys Vlasenko