求救!

求救!

请问在写shell的时候判断奇偶的是用那个命令?      
没有见过直接判断奇偶的命令, 我的笨法子:
$ xx=13
$ if ((xx % 2 == 0)); then echo even; else echo odd; fi
$ xx=14
$ if ((xx % 2 == 0)); then echo even; else echo odd; fi