commit bash-20150626 snapshot

This commit is contained in:
Chet Ramey
2015-07-09 11:18:25 -04:00
parent 05d9462c4b
commit b47ecd026d
13 changed files with 106 additions and 1039 deletions
+10
View File
@@ -218,5 +218,15 @@ unset x
: $(case a in a) echo ;; # comment
esac)
# fixed after bash-4.3 released
testing=$(
echo test | while read line; do
case $line in
test) echo saw test ;;
*) echo other ;;
esac
done
)
# recommended to be parsed as a nested comsub instead of arithsub
echo $(( echo ab cde ) )