#!/bin/sh
#< quick find wrapper for searching current directory

find . -name "$1" -print

exit 0