Skip to content

Instantly share code, notes, and snippets.

@stpierre
Created May 7, 2015 12:37
Show Gist options
  • Save stpierre/ec64422d3713c1a6149a to your computer and use it in GitHub Desktop.
Save stpierre/ec64422d3713c1a6149a to your computer and use it in GitHub Desktop.
Bash comparison operators
$ a=4
$ b=04
$ test "$a" -eq "$b"
$ echo $?
0
$ test "$a" = "$b"
$ echo $?
1
$ test $a -eq $b
$ echo $?
0
$ test $a = $b
$ echo $?
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment