#!/bin/bash
gfind(){
  if [ -d $1 ]
  then
	find "$@"
  else
	find . "$@"
  fi
}

