arg1 -ne arg2 (conditional operator)

true if integer arg1 is not equal to arg2.

Examples

Different ways to compare two integers:
1
2
3
4
test "$n" -ne 42 && echo "$n != 42"
[ "$n" -ne 42 ] && echo "$n != 42"
# Bash
[[ "$n" -ne 42 ]] && echo "$n != 42"
BashSupport Pro ist eine Bash IDE mit Unterstützung für -neprobieren Sie es aus!
© 2020–2024 Joachim Ansorg
Impressum
Datenschutz
Rechtliches