index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
bin
/
sh
Commit message (
Expand
)
Author
Age
Files
Lines
*
sh: Send the "not found" message for builtin <cmd> to redirected fd 2.
jilles
2010-01-03
1
-5
/
+11
*
sh: Fix some bugs with backquoted builtins:
jilles
2010-01-01
6
-21
/
+23
*
sh(1): document ulimit -w (swapuse rlimit).
jilles
2009-12-31
1
-2
/
+5
*
sh(1): Correct two places where "$@" lacked necessary quotes.
jilles
2009-12-31
1
-2
/
+2
*
sh: Use PATH= assignment in type.
jilles
2009-12-31
1
-1
/
+1
*
sh: Allow command -pv and command -pV (lookup using _PATH_STDPATH).
jilles
2009-12-31
3
-7
/
+14
*
sh: Ensure funcnest is decremented if there was an error in the function.
jilles
2009-12-30
1
-2
/
+3
*
Fix memory leak when parsing backticks (``).
jilles
2009-12-30
1
-13
/
+23
*
sh: arith: Return only 0 and 1 from && and ||.
jilles
2009-12-30
1
-2
/
+2
*
sh: Change varinit to use const better.
jilles
2009-12-27
1
-13
/
+13
*
sh: Various warning fixes (from WARNS=6 NO_WERROR=1):
jilles
2009-12-27
21
-100
/
+98
*
Remove declaration of function that no longer exists.
jilles
2009-12-26
1
-1
/
+0
*
sh: Do not run callers' exception handlers in subshells.
jilles
2009-12-25
3
-3
/
+5
*
sh: Do not consider a tilde-prefix with expansions in it.
jilles
2009-12-25
1
-2
/
+7
*
sh: Add some __dead2 to indicate functions that do not return.
jilles
2009-12-24
4
-6
/
+6
*
sh: Constify various strings.
jilles
2009-12-24
28
-90
/
+92
*
sh: Remove setting variables from dotcmd/exportcmd.
jilles
2009-12-24
2
-5
/
+0
*
Fix some cases where file descriptors from redirections leak to programs.
jilles
2009-11-29
2
-16
/
+7
*
Fix various things about SIGINT handling:
jilles
2009-11-22
6
-6
/
+25
*
sh: Ensure the same command input file is on top after executing a builtin.
jilles
2009-11-22
3
-0
/
+33
*
trap: do not consider a bad signal name a fatal error.
jilles
2009-11-21
1
-3
/
+6
*
Handle current work directories of arbitrary length. The argument to cd
stefanf
2009-11-21
1
-22
/
+29
*
sh: Some changes to stderr flushing:
jilles
2009-11-21
7
-14
/
+16
*
sh: Allow a newline before "in" in a for command, as required by POSIX.
jilles
2009-11-14
1
-1
/
+3
*
sh: Use sigaction instead of signal/siginterrupt combination.
jilles
2009-11-11
1
-4
/
+6
*
sh: Fix memory leak when using a variable in arithmetic like $((x)).
jilles
2009-11-05
1
-3
/
+23
*
sh: Exempt $@ and $* from set -u
jilles
2009-10-24
2
-3
/
+6
*
sh: Show more information about syntax errors in command substitution:
jilles
2009-10-16
1
-0
/
+5
*
Clarify quoting of word in ${v=word} in sh(1).
jilles
2009-10-07
1
-0
/
+3
*
sh: Send the "xyz: not found" message to redirected fd 2.
jilles
2009-10-06
2
-7
/
+3
*
sh: Disallow mismatched quotes in backticks (`...`).
jilles
2009-10-01
1
-7
/
+1
*
Mention that NUL characters are not allowed in sh(1) input.
jilles
2009-09-20
1
-0
/
+4
*
sh: Fix crash with empty functions (f() { }) introduced in r196483
jilles
2009-08-28
4
-8
/
+17
*
sh: Fix crash when undefining or redefining a currently executing function.
jilles
2009-08-23
5
-18
/
+44
*
Fix some weirdnesses in the NetBSD IFS code,
jilles
2009-06-25
1
-2
/
+3
*
Improve IFS expansion using code from NetBSD.
jilles
2009-06-25
1
-61
/
+80
*
Designate special builtins as such in command -V and type.
jilles
2009-06-24
2
-3
/
+15
*
Quote -x tracing output so it is unambiguous.
jilles
2009-06-23
1
-2
/
+17
*
Do not fork for a subshell if it is the last thing this shell is doing
jilles
2009-06-23
1
-2
/
+2
*
Usermode portion of the support for swap allocation accounting:
kib
2009-06-23
1
-1
/
+1
*
sh: Improve handling of setjmp/longjmp volatile:
jilles
2009-06-23
4
-61
/
+18
*
Fix race condition in noclobber option.
jilles
2009-06-20
1
-7
/
+19
*
Fix some issues with quoted output and shorten it in some cases.
jilles
2009-06-19
1
-9
/
+15
*
Properly flush input after an error in backquotes in interactive mode.
jilles
2009-06-17
1
-1
/
+1
*
Avoid leaving unnecessary waiting shells in many forms of sh -c COMMAND.
jilles
2009-06-13
5
-9
/
+35
*
Don't skip forking for an external command if any traps are active.
jilles
2009-06-13
3
-1
/
+17
*
Mention the range for the exit status for the exit special builtin.
jilles
2009-06-07
1
-0
/
+1
*
use explicit 'unsigned int' instead of just the implicit-style 'unsigned' to ...
rse
2009-06-01
1
-1
/
+1
*
align coding style with style(9) to avoid misunderstandings
rse
2009-06-01
1
-1
/
+2
*
correctly test for __GNUC__ macro (non-GCC compilers do not have it defined a...
rse
2009-06-01
3
-4
/
+4
[next]