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
/
ash.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
ash: speed up ${v//pattern/repl}
Denys Vlasenko
2021-07-25
1
-7
/
+10
*
ash: speed up ${v//pattern/repl} if !ASH_OPTIMIZE_FOR_SIZE
Denys Vlasenko
2021-07-22
1
-3
/
+27
*
ash: parser: Fix VSLENGTH parsing with trailing garbage
Denys Vlasenko
2021-06-25
1
-6
/
+3
*
ash: revert accidental change (should have been separate)
Denys Vlasenko
2021-06-25
1
-3
/
+6
*
e2fsprogs/*: remove ioctl calling obfuscation
Denys Vlasenko
2021-06-23
1
-6
/
+3
*
*: more --help tweaks
Denys Vlasenko
2021-06-15
1
-1
/
+1
*
*: --help tweaks
Denys Vlasenko
2021-06-14
1
-1
/
+1
*
shells: do not allow bare "read" in non-bash compat configs
Denys Vlasenko
2021-06-06
1
-0
/
+4
*
ash: add process substitution in bash-compatibility mode
Ron Yorston
2021-06-05
1
-17
/
+143
*
ash: placate -Werror=format-security
Denys Vlasenko
2021-02-18
1
-3
/
+1
*
ash: match bash behavior for ${empty_var/*/repl}
Denys Vlasenko
2021-01-09
1
-3
/
+3
*
ash: fix ${unset_var/pattern/repl}
Denys Vlasenko
2021-01-09
1
-1
/
+2
*
ash: improve --help
Denys Vlasenko
2021-01-04
1
-2
/
+7
*
ash: code shrink
Denys Vlasenko
2021-01-03
1
-2
/
+2
*
ash: make a strdup copy of $HISTFILE for line editing
Denys Vlasenko
2021-01-03
1
-2
/
+2
*
libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in sh...
Denys Vlasenko
2020-12-30
1
-5
/
+5
*
ash: change "clear ungetc counter on syntax errors" fix to match dash
Denys Vlasenko
2020-12-24
1
-2
/
+1
*
shell: for signal exitcode, use 128 | sig, not 128 + sig - MIPS has signal 128
Denys Vlasenko
2020-12-23
1
-3
/
+3
*
bc: do not allocate line editing state until needed
Denys Vlasenko
2020-12-21
1
-2
/
+1
*
ash: clear ungetc counter on syntax errors
Denys Vlasenko
2020-12-19
1
-55
/
+57
*
ash: reset SIGHUP earlier: allows HUP traps in .profile, closes 13371
Denys Vlasenko
2020-12-13
1
-8
/
+11
*
decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly
Denys Vlasenko
2020-11-30
1
-3
/
+3
*
fix warning: label 'out1' defined but not used
Cristian Ionescu-Idbohrn
2020-11-19
1
-0
/
+2
*
ash: make interactive ^C break out of PS2 mode
Denys Vlasenko
2020-11-16
1
-4
/
+3
*
shell: update comments on the status of [[ ]] compat
Denys Vlasenko
2020-10-31
1
-3
/
+3
*
shell: better support of [[ ]] bashism
Denys Vlasenko
2020-10-31
1
-7
/
+8
*
avoid using strok - eliminates use of hidden global variable
Denys Vlasenko
2020-10-06
1
-2
/
+2
*
ash: jobs: Fix waitcmd busy loop
Denys Vlasenko
2020-09-29
1
-57
/
+34
*
ash: jobs: Fix infinite loop in waitproc
Denys Vlasenko
2020-09-29
1
-6
/
+19
*
ash: remove a tentative TODO, it's a wrong idea
Denys Vlasenko
2020-09-29
1
-1
/
+1
*
nologin: make it possible to build it as single applet
Denys Vlasenko
2020-06-24
1
-19
/
+22
*
ash,hush: drop pointer check before calls to show_history
Ron Yorston
2020-04-30
1
-2
/
+1
*
ash: fix build failure when command built-in is disabled
Ron Yorston
2020-04-30
1
-1
/
+3
*
ash: expand: Fix multiple issues with EXP_DISCARD in evalvar
Denys Vlasenko
2020-02-24
1
-14
/
+14
*
ash: expand: Do not reprocess data when expanding words
Denys Vlasenko
2020-02-24
1
-178
/
+154
*
ash: move TRACE statement in evalcommand()
Ron Yorston
2020-02-24
1
-1
/
+2
*
ash: rename some function parameters to match dash
Denys Vlasenko
2020-02-24
1
-29
/
+29
*
ash: rename stack_nputstr() back to stnputs() to match dash
Denys Vlasenko
2020-02-24
1
-3
/
+3
*
ash: Expand here-documents in the current shell environment
Denys Vlasenko
2020-02-22
1
-13
/
+16
*
ash: parser: Do not push token back before parseheredoc
Denys Vlasenko
2020-02-22
1
-1
/
+4
*
ash: parser: Fix old-style command substitution here-document crash
Denys Vlasenko
2020-02-22
1
-1
/
+1
*
ash: expand: Ensure result is escaped in cvtnum
Denys Vlasenko
2020-02-21
1
-25
/
+24
*
ash: memalloc: Avoid looping in growstackto
Denys Vlasenko
2020-02-21
1
-7
/
+7
*
ash: eval: Only restore exit status on exit/return
Denys Vlasenko
2020-02-20
1
-48
/
+51
*
ash: Return without arguments in a trap should use status outside traps
Denys Vlasenko
2020-02-20
1
-5
/
+18
*
ash: return exit status of nofork applets (again)
Ron Yorston
2020-02-20
1
-1
/
+1
*
ash: expand: Merge syntax/quotes in memtodest with flags
Denys Vlasenko
2020-02-20
1
-21
/
+19
*
ash: eval: Always set localvar_stop
Denys Vlasenko
2020-02-20
1
-11
/
+12
*
ash: eval: Replace with listsetvar with mklocal/setvareq
Denys Vlasenko
2020-02-20
1
-35
/
+28
*
ash: eval: Fail immediately with redirections errors for simple command
Denys Vlasenko
2020-02-20
1
-16
/
+16
[next]