commit bash-20160304 snapshot

This commit is contained in:
Chet Ramey
2016-03-30 10:54:11 -04:00
parent ccb4014f23
commit c5cc27c847
7 changed files with 29 additions and 9 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-$$