aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
AgeCommit message (Expand)Author
2018-02-13hush: simplify process_command_subs()Denys Vlasenko
2018-02-08hush: probably fixing a bug in last LINENO fixDenys Vlasenko
2018-02-08hush: LINENO fixDenys Vlasenko
2018-01-30hush: protect against self-modifying trap codeDenys Vlasenko
2018-01-27hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ashDenys Vlasenko
2018-01-27hush: fix dot builtin to not search current directoryDenys Vlasenko
2018-01-25hush: fix two corner cases in ${v/pattern/repl}. Closes 10686Denys Vlasenko
2018-01-25hush: fix handling of $_ (so far it's an ordinary variable, no special meaning)Denys Vlasenko
2018-01-19hush: fix a case where EXIT trap may modify its code mid-flightDenys Vlasenko
2018-01-19hush: fix build if !BASH_LINENO_VARDenys Vlasenko
2018-01-19hush: implement $LINENO bashismDenys Vlasenko
2018-01-13hush: fix raw ^C handlisg in single-quoted stringsDenys Vlasenko
2018-01-12hush: tweak command -vV printing code, no logic changesDenys Vlasenko
2018-01-12hush: implement "command -v -V"Denys Vlasenko
2018-01-11hush: implement "command" builtin (no options are supported yet)Denys Vlasenko
2018-01-11hush: fix handling of ^C in evalDenys Vlasenko
2018-01-11hush: fix handling of raw ^C in scripts: "echo ^C"Denys Vlasenko
2018-01-11hush: remove dead codeDenys Vlasenko
2017-12-31randomconfig fixesDenys Vlasenko
2017-10-22hush: fix comment parsing in `cmd`, closes 10421Denys Vlasenko
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