#!/bin/bash
a=8 ; b=2
if (( "$a" < "$b" )) ; then
  echo "$a < $b"
else
  echo "$a n'est pas inférieur à $b"
fi