bash-4.4 beta2 release

This commit is contained in:
Chet Ramey
2016-07-11 16:52:30 -04:00
parent 690150f9e5
commit a4eef1991c
205 changed files with 21194 additions and 15639 deletions
+5
View File
@@ -19,8 +19,13 @@ echo $?
echo $?
# pipe
if [ -e /dev/stdin ]; then
echo "echo three - OK" | . /dev/stdin
echo $?
else
# no /dev/stdin, just fake it
echo "three - OK" ; echo 0
fi
# FIFO
mkfifo $TMPDIR/fifo-$$