bash-5.0 distribution sources and documentation

This commit is contained in:
Chet Ramey
2019-01-07 09:27:52 -05:00
parent 6444760999
commit d233b485e8
528 changed files with 84836 additions and 67099 deletions
+24
View File
@@ -23,3 +23,27 @@ echo after while
./trap2a.sub
echo $(false ; echo command substitution)
# test behavior of failed commands following `command' builtin
command false
(command false)
command false | echo bar
(false)
exit 42 | command false
command command command false
unset FALSE
if [ -x /bin/false ]; then
FALSE=/bin/false
elif [ -x /usr/bin/false ]; then
FALSE=/usr/bin/false
else
FALSE='command false'
fi
command $FALSE
command command command $FALSE