#!/bin/sh
# find a file with a pattern in the name
exec find . -type f -iname '*'$*'*' -ls

