Bash Command Check 2 Arguments

if [ $# -lt 2 ]; then
    # TODO: print usage
    exit 1
fi
Worried Wasp