mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-02 18:00:49 +02:00
Bash-5.3-alpha release
This commit is contained in:
@@ -80,6 +80,19 @@ echo AND list succeeded
|
||||
|
||||
false || echo OR list succeeded
|
||||
|
||||
# more compound commands containing failing commands
|
||||
for (( f=0; f<10; f++ )); do
|
||||
printf '%.2d ' $f
|
||||
false
|
||||
done && echo done
|
||||
echo
|
||||
|
||||
for f in {0..9}; do
|
||||
printf '%.2d ' $f
|
||||
false
|
||||
done && echo done
|
||||
echo
|
||||
|
||||
! false
|
||||
echo ! succeeded
|
||||
|
||||
|
||||
Reference in New Issue
Block a user