mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-06 10:12:38 +02:00
commit bash-20160115 snapshot
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
echo x1 | ( cat & wait )
|
||||
echo x1a | ( :& cat & wait )
|
||||
|
||||
echo x2 | for f in 1; do
|
||||
cat & wait
|
||||
done
|
||||
echo x2a | if true; then cat & wait; fi
|
||||
echo x2b | for (( i=0; i < 1; i++ )) ; do cat & wait; done
|
||||
|
||||
echo x3 | { cat & wait; }
|
||||
|
||||
lambda() { cat & wait; }
|
||||
echo x3a | lambda
|
||||
|
||||
: ${TMPDIR:=/tmp}
|
||||
SRCF=$TMPDIR/bash-src-$$
|
||||
cat > $SRCF << \EOF
|
||||
cat & wait
|
||||
EOF
|
||||
echo x3b | . $SRCF
|
||||
rm -f $SRCF
|
||||
Reference in New Issue
Block a user