commit bash-20041027 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 13:38:37 -05:00
parent c327176389
commit d90269dd00
54 changed files with 10370 additions and 41 deletions
+24
View File
@@ -44,3 +44,27 @@ echo make -k FOO=~/mumble
typeset FOO=~/mumble
echo "$FOO"
h=HOME=~
echo $h
export h=HOME=~
echo $h
x=1234
HOME='/usr/$x/abc'
echo ~
# behavior differs here in posix mode
set -o posix
eval echo $h
eval $h
echo $HOME
set +o posix
eval echo $h
eval $h
echo $HOME