index
:
busybox-w32
ansi
awk_faster
busybox
dscho-kill-gently
embed
fix_backslash
manifest
master
merge
merge_1_19
merge_1_20
noconsole
noconsole2
old
path_search
realpath
stty
su_cmd
su_cmd2
su_cmd3
symlink
tab_completion
tab_completion2
tilde
ucrt_hack
w32_1_26_2
wget-post-file
wip
A mirror of https://github.com/rmyorston/busybox-w32.git
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
shell
/
hush.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
hush: "wait $!; echo $?" should return 127 if $! already exited
Denys Vlasenko
2016-11-07
1
-4
/
+5
*
hush: implement "wait %jobspec"
Denys Vlasenko
2016-11-07
1
-29
/
+88
*
hush: factor out %jobspec parsing
Denys Vlasenko
2016-11-07
1
-11
/
+22
*
hush: comment fix
Denys Vlasenko
2016-11-07
1
-2
/
+2
*
hush: do not allow sh -c '{ echo boo }'
Denys Vlasenko
2016-11-07
1
-2
/
+4
*
hush: case logic for setting $? was still wrong
Denys Vlasenko
2016-11-04
1
-4
/
+12
*
hush: non-matching "case" statement sets $? to 0
Denys Vlasenko
2016-11-04
1
-0
/
+2
*
hush: allow { cmd } to not be terminated by semicolon in some cases
Denys Vlasenko
2016-11-04
1
-6
/
+26
*
hush: fix "(sleep 1; exit 3) & sleep 2; echo $?; wait $!; echo $?"
Denys Vlasenko
2016-10-28
1
-4
/
+14
*
hush: fix "wait PID"
Denys Vlasenko
2016-10-28
1
-174
/
+230
*
ash: [SHELL] Expand ENV before using it
Denys Vlasenko
2016-10-27
1
-0
/
+1
*
ash,hush: set exit code 127 in "sh /does/not/exist" case
Denys Vlasenko
2016-10-25
1
-0
/
+2
*
hush: add commented-out debug printouts in "memleak" built-in
Denys Vlasenko
2016-10-03
1
-0
/
+9
*
hush: fix a memory corruption when exported variable is modified
Denys Vlasenko
2016-10-03
1
-7
/
+19
*
hush: fix exitcode on exec failure with EACCES - should be 126
Denys Vlasenko
2016-10-03
1
-1
/
+5
*
whitespace fixes
Denys Vlasenko
2016-10-02
1
-1
/
+1
*
hush: fix var3.tests
Denys Vlasenko
2016-10-02
1
-206
/
+214
*
sh: do not print empty line at the end of "help" output
Denys Vlasenko
2016-10-02
1
-1
/
+0
*
hush: 'return' should have effect earlier
Denys Vlasenko
2016-10-01
1
-14
/
+20
*
hush: enable "msh is deprecated" message in msh stub
Denys Vlasenko
2016-09-30
1
-1
/
+1
*
hush: fix typo in comment
Denys Vlasenko
2016-09-30
1
-1
/
+1
*
hush: fix interactive input handling of backslash+newline
Denys Vlasenko
2016-09-30
1
-74
/
+89
*
hush: G.user_input_buf[] is needed only if line editing is enabled
Denys Vlasenko
2016-09-29
1
-2
/
+7
*
hush: speed optimizations
Denys Vlasenko
2016-09-29
1
-6
/
+27
*
hush: fix handling of by backslash-newline in $((arith)) and $(cmd)
Denys Vlasenko
2016-09-29
1
-15
/
+39
*
hush: rework input char buffering to allow more than one-deep peek
Denys Vlasenko
2016-09-29
1
-68
/
+125
*
hush: fix 'eval ""' handling
Denys Vlasenko
2016-09-29
1
-1
/
+1
*
hush: fix ". EMPTY_LINE" not setting $? to 0
Denys Vlasenko
2016-09-29
1
-0
/
+2
*
hush: document better where bad redirect syntax is detected
Denys Vlasenko
2016-09-20
1
-3
/
+20
*
hush: fix "redirects can close script fd" bug
Denys Vlasenko
2016-08-22
1
-61
/
+140
*
hush: do not leak script fds into NOEXEC children
Denys Vlasenko
2016-08-20
1
-10
/
+68
*
hush: bit better comments in redirect code. No logic changes
Denys Vlasenko
2016-08-20
1
-11
/
+38
*
hush: `cmd` and arithmetic also need the fix for FILE rewind
Denys Vlasenko
2016-08-19
1
-32
/
+39
*
hush: fix a bug in FEATURE_SH_STANDALONE=y config. Closes 9186
Denys Vlasenko
2016-08-19
1
-3
/
+20
*
hush: fix a possible bug
Denys Vlasenko
2016-07-21
1
-1
/
+3
*
hush: code shrink
Denys Vlasenko
2015-10-11
1
-4
/
+1
*
remove global "jmp_buf die_jmp" from !FEATURE_PREFER_APPLETS builds
Denys Vlasenko
2015-10-09
1
-11
/
+14
*
build system: -fno-builtin-printf
Denys Vlasenko
2015-10-07
1
-1
/
+1
*
libbb: more compact API for bb_parse_mode()
Denys Vlasenko
2015-10-07
1
-3
/
+4
*
hush: fix umask: umask(022) was setting umask(755)
Denys Vlasenko
2015-10-07
1
-3
/
+7
*
hush: fix a nommu bug where a part of function body is lost if run in a pipe
Denys Vlasenko
2015-09-04
1
-10
/
+25
*
Removes stray empty line from code
Maninder Singh
2015-07-13
1
-1
/
+0
*
typo fixes
Maninder Singh
2015-05-25
1
-1
/
+1
*
libbb: introduce and use is_prefixed_with()
Denys Vlasenko
2015-03-12
1
-1
/
+1
*
ash,hush: run reinit_unicode() only if makes sense
Denys Vlasenko
2014-08-13
1
-4
/
+8
*
hush: make ${#var} unicode-aware
Denys Vlasenko
2014-08-13
1
-10
/
+19
*
ash,hush: set $HOSTNAME is bash compat. Closes 7028
Denys Vlasenko
2014-04-15
1
-1
/
+10
*
hush: make "true" built-in
Denys Vlasenko
2014-03-14
1
-0
/
+1
*
hush: typo fixes in comments
Denys Vlasenko
2013-11-28
1
-2
/
+2
*
typo fix in comment
Denys Vlasenko
2013-07-08
1
-1
/
+1
[prev]
[next]