Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-29 | first pass at `trap` support in hush | Mike Frysinger | |
2009-03-29 | use bb_strtou() in umask/wait and check errno to see if there was a problem ↵ | Mike Frysinger | |
rather than using endp | |||
2009-03-29 | make sure we check job status whenever updating the prompt | Mike Frysinger | |
2009-03-28 | do not let handle_dollar() accept vars that start with a digit | Mike Frysinger | |
2009-03-28 | implement `wait` builtin | Mike Frysinger | |
2009-03-28 | randomconfig fix | Denis Vlasenko | |
2009-03-28 | update the normally disabled debug code around the syntax() func to use new ↵ | Mike Frysinger | |
maybe_die() | |||
2009-03-28 | implement most POSIX parameter expansions (~+500bytes) | Mike Frysinger | |
2009-03-28 | split up feature todo by posix/bash | Mike Frysinger | |
2009-03-28 | unify `set` handling with command line processing, fixup `set` argv ↵ | Mike Frysinger | |
processing so it doesnt clobber argv when setting options, and barf on unhandled set options | |||
2009-03-28 | handle the "-s" command line option that POSIX requires | Mike Frysinger | |
2009-03-28 | rename "-f" (fake) option to "-n" to match POSIX | Mike Frysinger | |
2009-03-28 | tweak format modifier in debug code to fixup gcc warning | Mike Frysinger | |
2009-03-28 | convert some of the ENABLE_FEATURE_EDITING from CPP if to C if | Mike Frysinger | |
2009-03-28 | stop lying about [[ test support | Mike Frysinger | |
2009-03-26 | enable most job functions on no-mmu systems | Mike Frysinger | |
2009-03-23 | do not make startup banner depend on job support | Mike Frysinger | |
2009-03-22 | move parse_stream out of ENABLE_HUSH_TICK to avoid implicit decl/build error | Mike Frysinger | |
2009-03-22 | hush: rearrange functions to reduce amount of forward references. | Denis Vlasenko | |
Minimal code changes. | |||
2009-03-22 | hush: fix segv at repeated "set -- a b c" + "shift" | Denis Vlasenko | |
2009-03-21 | hush: fix strcpy of potentially overlapping strings | Denis Vlasenko | |
2009-03-20 | hush: fix bug 207 and "hush -c" parameter passing. | Denis Vlasenko | |
Now hush -c 'printf "%s\n" "$@"' (prints "\n") and hush -c 'printf "%s\n" "$@"' qwe asd (prints "asd\n") both work correctly | |||
2009-03-20 | hush: fix set [--] params. Closes bug 199. | Denis Vlasenko | |
function old new delta builtin_set 55 194 +139 add_strings_to_strings - 130 +130 add_string_to_strings 110 26 -84 ------------------------------------------------------------------------------ (add/remove: 1/0 grow/shrink: 1/1 up/down: 269/-84) Total: 185 bytes | |||
2008-12-30 | libbb: add bb_unsetenv (taken from hush). | Denis Vlasenko | |
udhcpc: stop filtering environment passed to the script. crond: fix uncovered potential bug (failing unsetenv) mdev: fix uncovered potential bug (failing unsetenv) tcp, udpsvd: fix uncovered potential bug (failing unsetenv) function old new delta safe_setenv - 58 +58 bb_unsetenv - 55 +55 builtin_unset 139 138 -1 tcpudpsvd_main 1843 1830 -13 free_strings_and_unsetenv 87 53 -34 udhcp_run_script 1186 1133 -53 safe_setenv4 62 - -62 ------------------------------------------------------------------------------ (add/remove: 2/1 grow/shrink: 0/4 up/down: 113/-163) Total: -50 bytes | |||
2008-11-25 | ash,hush: add TODO for rare build failure | Denis Vlasenko | |
*: remove some redundant includes | |||
2008-10-29 | whitespace fixes, no code changes | Denis Vlasenko | |
2008-10-14 | hush: add TODO | Denis Vlasenko | |
2008-10-14 | hush: next small step towards functions | Denis Vlasenko | |
2008-10-13 | hush: fix NOMMU bug (analogous to preceding commit for MMU) | Denis Vlasenko | |
2008-10-13 | hush: fix trashing of environment by local env vars: | Denis Vlasenko | |
a=a; a=b cmd; - a was unset! +57 bytes function old new delta add_string_to_strings - 110 +110 putenv_all - 27 +27 run_list 2086 2111 +25 free_strings - 7 +7 free_pipe 210 208 -2 add_malloced_string_to_strings 110 - -110 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 1/1 up/down: 169/-112) Total: 57 bytes | |||
2008-10-09 | hush: fix environment and memory leaks, add tests for them | Denis Vlasenko | |
function old new delta add_malloced_string_to_strings - 110 +110 run_list 1999 2086 +87 free_strings_and_unsetenv - 87 +87 hush_version_str - 18 +18 pseudo_exec_argv 139 146 +7 static.version_str 17 - -17 free_pipe 237 210 -27 done_word 790 642 -148 ------------------------------------------------------------------------------ (add/remove: 3/1 grow/shrink: 2/2 up/down: 309/-192) Total: 117 bytes | |||
2008-10-09 | hush: preparatory work for implementing functions | Denis Vlasenko | |
2008-10-09 | hush: massive renaming of ill-named structures and fields | Denis Vlasenko | |
hush: error out on constructs like: $ abc(def) - was working as if it was (abcdef) $ case b in abc(a|(b) echo YES; esac - was ignoring 'abc' and extra '(' | |||
2008-09-25 | - fix compilation on OSF/1 | Bernhard Reutner-Fischer | |
2008-08-04 | hush: fix mishandling of a'b'c=fff as assignments. They are not. | Denis Vlasenko | |
function old new delta parse_stream 1920 2004 +84 done_word 715 752 +37 parse_and_run_stream 328 333 +5 builtin_exec 25 29 +4 pseudo_exec_argv 138 139 +1 run_list 2006 1999 -7 is_assignment 215 134 -81 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/2 up/down: 131/-88) Total: 43 bytes | |||
2008-08-03 | hush: remove a comment about already fixed bug | Denis Vlasenko | |
2008-07-31 | hush: support $_NUMBERS variable names | Denis Vlasenko | |
2008-07-31 | hush: fix "case ... in <newline> word)..." | Denis Vlasenko | |
2008-07-31 | hush: support "pattern1|pattern2...)" in case statements | Denis Vlasenko | |
parse_stream 1847 1861 +14 run_list 1995 2006 +11 | |||
2008-07-29 | hush: trivial code shrink | Denis Vlasenko | |
function old new delta builtin_continue 48 22 -26 | |||
2008-07-29 | hush: use G.xxx instead of #define xxx G.xxx. We have too many globals | Denis Vlasenko | |
there and #defines get messy. Remove one write-only G.variable. | |||
2008-07-29 | randomconfig fix | Denis Vlasenko | |
2008-07-29 | hush: small fix for repeated continue and fix for wrong loop depth count | Denis Vlasenko | |
after Ctrl-C; with testcase for first one | |||
2008-07-29 | hush: fix inverted check (was making all break's to act as "break 99999") | Denis Vlasenko | |
2008-07-29 | hush: fix break'ing out of {} and () groups; with testcase | Denis Vlasenko | |
function old new delta builtin_break 93 129 +36 builtin_continue 21 47 +26 run_list 1973 1976 +3 | |||
2008-07-29 | randomconfig fixes | Denis Vlasenko | |
2008-07-29 | hush: add #defines to switch off break/continue if loops are not supported | Denis Vlasenko | |
*: remove a few inline keywords no code changes | |||
2008-07-28 | hush: fix "while false; ..." exitcode; add testsuites | Denis Vlasenko | |
2008-07-28 | hush: support "break N" and "continue N" | Denis Vlasenko | |
fix non-detection of builtins and applets in "v=break; ...; $v; ..." case add testsuite entries for the above function old new delta builtin_break 12 93 +81 run_list 1948 1971 +23 builtin_continue 12 21 +9 pseudo_exec_argv 132 138 +6 builtin_exec 23 25 +2 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 5/0 up/down: 121/0) Total: 121 bytes | |||
2008-07-28 | hush: implement break and continue | Denis Vlasenko | |
function old new delta bltins 252 276 +24 builtin_continue - 12 +12 builtin_break - 12 +12 static.version_str 18 17 -1 run_list 1984 1948 -36 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 1/2 up/down: 48/-27) Total: 11 bytes |