#!/bin/bash #if test $# -lt 2 if [ $# -lt 2 ] then echo "sorry you must enter 2 command line args" exit 10 elif test $# -gt 2 then echo too many args exit 20 else echo good you did enter 2 arguments fi