mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-24 22:37:59 +02:00
20 lines
273 B
Plaintext
20 lines
273 B
Plaintext
# printing conditional commands for xtrace
|
|
|
|
set -x
|
|
|
|
# error
|
|
[[ -t X ]]
|
|
# null operand
|
|
[[ $b > 7 ]]
|
|
|
|
# successful unary operator
|
|
[[ -n X ]]
|
|
|
|
# successful binary operator
|
|
ivar=42
|
|
[[ $ivar -eq 42 ]]
|
|
|
|
# compound operator, displayed as two unary expressions
|
|
|
|
[[ -n a && -n b ]]
|