aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
AgeCommit message (Expand)Author
2018-03-30ash: fix "char == CTLfoo" comparison signedness bugDenys Vlasenko
2018-03-30ash: use F_DUPFD_CLOEXEC and O_CLOEXECDenys Vlasenko
2018-03-28ash,hush: fix "saved" redirected fds still visible in childrenDenys Vlasenko
2018-02-13ash : fix double-quoted "\z" handlingDenys Vlasenko
2018-01-28ash: make it possible to disable "const global ptr" optimizationDenys Vlasenko
2018-01-27ash: add LINENO supportDenys Vlasenko
2018-01-27hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ashDenys Vlasenko
2018-01-26ash: introduce a config option to search current directory for sourced filesDenys Vlasenko
2018-01-24ash: add support for command_not_found_handle hook function (bashism)William Pitcock
2018-01-15ash: a bit of NOFORK code should only be active if FEATURE_SH_STANDALONE=yDenys Vlasenko
2018-01-10ash: ALWAYS_INLINE grabstackblock()Denys Vlasenko
2018-01-10ash: make ${v:N:M} more robust for very large M by clamping to MIN/MAX_INTDenys Vlasenko
2018-01-09ash: add comment explaining last changeDenys Vlasenko
2018-01-09ash: fix var_bash5.tests - ${VAR/pattern/repl} constructDenys Vlasenko
2018-01-07ash: fail if 'shift' operand is out of rangeIngo van Lil
2017-12-31randomconfig fixesDenys Vlasenko
2017-11-03ash: fix nofork bug where environment is not properly passed to a commandDenys Vlasenko
2017-11-02ash: retain envvars with bad names in initial environment. Closes 10231Denys Vlasenko
2017-10-12whitespace fixesDenys Vlasenko
2017-10-12typo fixDenys Vlasenko
2017-10-12ash: survive failures in $PS1 expansion. Closes 10371Denys Vlasenko
2017-09-29use %m printf specifier where appropriateDenys Vlasenko
2017-08-23ash: more s/error/perror/ for better error reportingDenys Vlasenko
2017-08-23ash: when cd fails, say whyJohannes Schindelin
2017-08-23ash: report reason when a script file could not be openedJohannes Schindelin
2017-08-15ash: unset OPTARG if getopts exits 1, support OPTERR=0 behaviorDenys Vlasenko
2017-08-15ash,hush: comment and debug tweaks, no code changesDenys Vlasenko
2017-08-14ash: one "current line = 1" might be missing, fix thatDenys Vlasenko
2017-08-14ash: [PARSER] Catch variable length expansions on non-existant specialsDenys Vlasenko
2017-08-11ash: fix "unset OPTIND" throwing an error messageDenys Vlasenko
2017-08-10hush: optional times builtinDenys Vlasenko
2017-08-09ash: implement -d DELIM option for readJohannes Schindelin
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-06ash: do not set a signal to SIG_DFL if it already isDenys Vlasenko
2017-08-04ash: BASH_XTRACEFD bashismDenys Vlasenko
2017-08-04ash: remove no-longer-used variableJohannes Schindelin
2017-08-04ash: INT_OFF/INT_ON around run_nofork_applet()Denys Vlasenko
2017-08-04sheel: improve comments on signal handlingDenys Vlasenko
2017-08-03ash: add a fixme comment at run_nofork_appletDenys Vlasenko
2017-08-02line editing: make read_line_input() not take timeout paramDenys Vlasenko
2017-08-02do not use `a' quoting style in commentsDenys Vlasenko
2017-07-31ash: align --login code with dashDenys Vlasenko
2017-07-31ash: fix display of ">&-" redirect in job stringsDenys Vlasenko
2017-07-31ash,hush: ">&10" redirects to script/tty fds should not workDenys Vlasenko
2017-07-31ash: significant overhaul of redirect saving logicDenys Vlasenko
2017-07-31ash: remove REDIR_SAVEFD2Denys Vlasenko
2017-07-29ash: if !ENABLE_ASH_EXPAND_PRMT, disable PSSYNTAX codeDenys Vlasenko