mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
trap 'echo DEBUG' DEBUG
|
|
|
|
# make sure that the right command name appears in the error messages and
|
|
# that the DEBUG trap doesn't overwrite it
|
|
|
|
[[ ++ -gt 3 ]]
|
|
|
|
(( -- ))
|
|
|
|
for (( -- ; ++; -- ))
|
|
do
|
|
echo bogus
|
|
done
|
|
|