7cca93e61a
Per Austin group issue #884, always set IFS to $' \t\n'. As before, IFS will be exported iff it was in the environment. Most shells (e.g. bash, ksh93 and mksh) already did this. This change improves predictability, in that scripts can simply rely on the default value. However, the effect on security is little, since applications should not be calling the shell with attacker-controlled environment variable names in the first place and other security-sensitive variables such as PATH should be and are imported by the shell. When using a new sh with an old (before 10.2) libc wordexp(), IFS is no longer passed on. Otherwise, wordexp() continues to pass along IFS from the environment per its documentation. Discussed with: pfg Relnotes: yes
11 lines
112 B
Plaintext
11 lines
112 B
Plaintext
# $FreeBSD$
|
|
|
|
env IFS=_ ${SH} -c '
|
|
rc=2
|
|
nosuchtool_function() {
|
|
rc=0
|
|
}
|
|
v=nosuchtool_function
|
|
$v && exit "$rc"
|
|
'
|