aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2017-08-29hush: GETOPT_RESET() _after_ getopts too.Denys Vlasenko
2017-08-29hush: reuse "OPTIND=..." stringDenys Vlasenko
2017-08-29hush: fix "getopts" builtin to not be upset by other builtins calling getopt()Denys Vlasenko
2017-08-17hush: trivial code shrink in builtin_getoptsDenys Vlasenko
2017-08-15ash,hush: comment and debug tweaks, no code changesDenys Vlasenko
2017-08-11hush: implement "silent" optstrings of ":opts"Denys Vlasenko
2017-08-11hush: fix redirect code (was using uninitialized variables)Denys Vlasenko
2017-08-11shell: add OPTARG poisoning to getopt_optarg.testsDenys Vlasenko
2017-08-11hush: teach getopts to set/unset OPTARGDenys Vlasenko
2017-08-11hush: getopts builtinDenys Vlasenko
2017-08-10hush: optional times builtinDenys Vlasenko
2017-08-09hush: implement -d DELIM option for 'read'Denys Vlasenko
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