1. 33f7c8f hush: code shrink by Denys Vlasenko · 7 years ago
  2. d4802c6 hush: fix a='a\\'; echo "${a%\\\\}" by Denys Vlasenko · 7 years ago
  3. 55f8133 shell: tweak bkslash_in_varexp.tests, add bkslash_in_varexp1.tests by Denys Vlasenko · 7 years ago
  4. aa617ac hush: simplify process_command_subs() by Denys Vlasenko · 7 years ago
  5. f786901 hush: probably fixing a bug in last LINENO fix by Denys Vlasenko · 7 years ago
  6. 5807e18 hush: LINENO fix by Denys Vlasenko · 7 years ago
  7. 749575d hush: protect against self-modifying trap code by Denys Vlasenko · 7 years ago
  8. 54c2111 hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ash by Denys Vlasenko · 7 years ago
  9. f7e0fea hush: fix dot builtin to not search current directory by Denys Vlasenko · 7 years ago
  10. cba79a8 hush: fix two corner cases in ${v/pattern/repl}. Closes 10686 by Denys Vlasenko · 7 years ago
  11. 0ca3198 hush: fix handling of $_ (so far it's an ordinary variable, no special meaning) by Denys Vlasenko · 7 years ago
  12. 46f839c hush: fix a case where EXIT trap may modify its code mid-flight by Denys Vlasenko · 7 years ago
  13. b8d076b hush: fix build if !BASH_LINENO_VAR by Denys Vlasenko · 7 years ago
  14. 6aad1dd hush: implement $LINENO bashism by Denys Vlasenko · 7 years ago
  15. 9809a82 hush: fix raw ^C handlisg in single-quoted strings by Denys Vlasenko · 7 years ago
  16. afb73a2 hush: tweak command -vV printing code, no logic changes by Denys Vlasenko · 7 years ago
  17. 5700029 hush: implement "command -v -V" by Denys Vlasenko · 7 years ago
  18. 3bb3e1d hush: implement "command" builtin (no options are supported yet) by Denys Vlasenko · 7 years ago
  19. 1f19112 hush: fix handling of ^C in eval by Denys Vlasenko · 7 years ago
  20. 932b997 hush: fix handling of raw ^C in scripts: "echo ^C" by Denys Vlasenko · 7 years ago
  21. aaf7a2e hush: remove dead code by Denys Vlasenko · 7 years ago
  22. 82d1c1f randomconfig fixes by Denys Vlasenko · 7 years ago
  23. 25f3b73 hush: fix comment parsing in `cmd`, closes 10421 by Denys Vlasenko · 7 years ago
  24. 6016181 hush: GETOPT_RESET() _after_ getopts too. by Denys Vlasenko · 7 years ago
  25. 55af51c hush: reuse "OPTIND=..." string by Denys Vlasenko · 7 years ago
  26. 238ff98 hush: fix "getopts" builtin to not be upset by other builtins calling getopt() by Denys Vlasenko · 7 years ago
  27. 048491f hush: trivial code shrink in builtin_getopts by Denys Vlasenko · 7 years ago
  28. 4476c70 ash,hush: comment and debug tweaks, no code changes by Denys Vlasenko · 7 years ago
  29. 419db03 hush: implement "silent" optstrings of ":opts" by Denys Vlasenko · 7 years ago
  30. d16e612 hush: fix redirect code (was using uninitialized variables) by Denys Vlasenko · 7 years ago
  31. 9a7d0a0 shell: add OPTARG poisoning to getopt_optarg.tests by Denys Vlasenko · 7 years ago
  32. 81f962f hush: teach getopts to set/unset OPTARG by Denys Vlasenko · 7 years ago
  33. 74d4058 hush: getopts builtin by Denys Vlasenko · 7 years ago
  34. 11f2e99 hush: optional times builtin by Denys Vlasenko · 7 years ago
  35. 1f41c88 hush: implement -d DELIM option for 'read' by Denys Vlasenko · 7 years ago
  36. 80e8e3c noexec: consolidate code by Denys Vlasenko · 7 years ago
  37. c9c1ccc noexec: do GETOPT_RESET() before entering APPLET_main() by Denys Vlasenko · 7 years ago
  38. f2cf1cc noexec: set comm field for noexecs by Denys Vlasenko · 7 years ago
  39. 248a67f free,stat: make NOEXEC by Denys Vlasenko · 7 years ago
  40. 49e6bf2 sheel: improve comments on signal handling by Denys Vlasenko · 7 years ago
  41. 3970120 hush: do not accept "if() { echo; }" function def by Denys Vlasenko · 7 years ago
  42. 84ea60e line editing: make read_line_input() not take timeout param by Denys Vlasenko · 7 years ago
  43. dd4b446 hush: make SIGINT handling visually less confusing by Denys Vlasenko · 7 years ago
  44. 7c40ddd NOFORK fixes by Denys Vlasenko · 7 years ago
  45. cee603d hush: remove redundant "G_flag_return_in_progress = -1" by Denys Vlasenko · 7 years ago
  46. 5b3d2eb hush: fix "true | func_with_return" not allowing return. by Denys Vlasenko · 7 years ago
  47. 75481d3 hush: functions have priority over builtins (!) by Denys Vlasenko · 7 years ago
  48. bf1c344 hush: if STANDALONE, close interactive fd for NOEXECed children by Denys Vlasenko · 7 years ago
  49. 32fdf2f ash,hush: ">&10" redirects to script/tty fds should not work by Denys Vlasenko · 7 years ago
  50. 657e900 hush: massage redirect code to be slightly more like ash by Denys Vlasenko · 7 years ago
  51. 0f018b3 hush: fix handling of empty heredoc EOF marker by Denys Vlasenko · 7 years ago
  52. 2093ad2 hush: fix ${##}, ${#?}, ${#!} handling by Denys Vlasenko · 7 years ago
  53. 86981e3 ash: allow "trap NUM [SIG]..." syntax by Denys Vlasenko · 7 years ago
  54. 645c697 hush: treat ${#?} as "length of $?" by Denys Vlasenko · 7 years ago
  55. 621fc50 hush: fix a case when redirect to a closed fd #1 is not restoring (closing) it by Denys Vlasenko · 7 years ago
  56. 0675b03 hush: use mempcpy where useful by Denys Vlasenko · 7 years ago
  57. 72089cf config: deindent all help texts by Denys Vlasenko · 7 years ago
  58. f9d656f hush: remove contradicting size info in config help by Denys Vlasenko · 7 years ago
  59. 4eed2c6 Update menuconfig items with approximate applet sizes by Denys Vlasenko · 7 years ago
  60. d2c15bc hush: tweak "help" output by Denys Vlasenko · 7 years ago
  61. cf51109 hush: fix readonly2.tests failure by Denys Vlasenko · 7 years ago
  62. 5b2cc0a hush: do not assign to readonly VAR in "VAR=VAL CMD" syntax too by Denys Vlasenko · 7 years ago
  63. 38ef39a hush: add readonly testcase, fix fallout by Denys Vlasenko · 7 years ago
  64. 3bab36b hush: convert exp/ro/local parameters to bitfields in one flag param by Denys Vlasenko · 7 years ago
  65. 6b0695b hush: HUSH_READONLY depends on HUSH by Denys Vlasenko · 7 years ago
  66. 6b48e1f hush: forgot to emit error on (failing) second "readonly VAR=VAL" by Denys Vlasenko · 7 years ago
  67. b95ee96 hush: smaller code in !READONLY configs by Denys Vlasenko · 7 years ago
  68. 1e66042 hush: implement "readonly" builtin by Denys Vlasenko · 7 years ago
  69. 0ba80e4 hush: small fix to last commit by Denys Vlasenko · 7 years ago
  70. e32b650 hush: support ${VAR:N:-M} by Denys Vlasenko · 7 years ago
  71. 203fd7b shells: expand TODO comments, no code changes by Denys Vlasenko · 7 years ago
  72. b24e55d hush: fix "cmd1 && cmd2 &" handling on NOMMU by Denys Vlasenko · 7 years ago
  73. ee553b9 hush: fix and_or_and_backgrounding.tests failure by Denys Vlasenko · 7 years ago
  74. 2ed74e2 hush: make "wait %1" work even if the job is dead by Denys Vlasenko · 7 years ago
  75. 0c5657e hush: remove superfluous comparison by Denys Vlasenko · 7 years ago
  76. 9fda609 hush: add support for "set -e" by Denys Vlasenko · 7 years ago
  77. b057806 hush: add TODO for "set -e" by Denys Vlasenko · 7 years ago
  78. 9e55a15 hush: simplify insert_job_into_table() a bit by Denys Vlasenko · 7 years ago
  79. 1609629 hush: rename a few functions by Denys Vlasenko · 7 years ago
  80. 1310263 hush: explain why wait5.tests is failing by Denys Vlasenko · 7 years ago
  81. 840a435 hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?" by Denys Vlasenko · 7 years ago
  82. 2db7461 hush: fix two redirection testcase failures by Denys Vlasenko · 7 years ago
  83. 69a5ec9 main: fix the case where user has "halt" as login shell. Closes 9986 by Denys Vlasenko · 7 years ago
  84. 50b8b29 hush: add a TODO about redir3.tests failure by Denys Vlasenko · 7 years ago
  85. e59591a hush: Print error messages on shift -1 by Denys Vlasenko · 7 years ago
  86. 5dad7bd hush: implement negative start in the ${v: -n[:m]} idiom by Denys Vlasenko · 7 years ago
  87. 7456298 hush: "adopt" ash signal4.tests by Denys Vlasenko · 7 years ago
  88. 637982f hush: correctly handle quoting in "case" even if !BASH_PATTERN_SUBST by Denys Vlasenko · 7 years ago
  89. bd43c67 hush: fix quoted_punct.tests failure by Denys Vlasenko · 7 years ago
  90. d4e4fdb fixes for bugs found by make_single_applets.sh by Denys Vlasenko · 7 years ago
  91. 2e989ef msh: delete this applet by Denys Vlasenko · 7 years ago
  92. 4ee824f randomconfig fixes by Denys Vlasenko · 7 years ago
  93. f547041 ash,hush: fix SIGCHLD interrupting read builtin by Denys Vlasenko · 8 years ago
  94. 10ad622 Spelling fixes in comments, documentation, tests and examples by Denys Vlasenko · 8 years ago
  95. 205d48e *: add comment about APPLET_ODDNAME format by Denys Vlasenko · 8 years ago
  96. 8944c67 hush: reinstate [[ builtin by Denys Vlasenko · 8 years ago
  97. 027d3ab hush: split bash compatible extensions into separate defines. No code changes by Kang-Che Sung · 8 years ago
  98. 80f806c hush: shorten output of "help" builtin by Denys Vlasenko · 8 years ago
  99. a1184af hush: reorder builtins (cd and pwd ought to be close, etc), no code changes by Denys Vlasenko · 8 years ago
  100. 265062d shells: make hush test optional, rename ASH_BUILTIN_foo -> ASH_foo by Denys Vlasenko · 8 years ago