#! /usr/bin/bash

echo 'This shell script handles command line arguments'

if [ -d "$1" ]; then
  echo $1 is a directory.  Good job.
  exit    
else
  echo usage: $0 directory
  exit    
fi










