#!/usr/bin/env bash

a=9
b=10

if [[ $b -gt $a ]]; then
	echo "$b is greater than $a"
else
	echo "uh oh"
fi
