#! /bin/sh # # Script to find file(s) matching given pattern using a recursive # search starting in the current directory. Prompts for the pattern, # which can use wildcards. The search is case insensitive. echo "Enter the desired file pattern:" read pattern find . -iname "$pattern"