|
Thanks for this suggestion but i've found nothing that i've not yet be done ...
In fact, i'm searching for a substitute of "-iname" option. I'd like to use a loop using a variable ($var for example) which should be passed to search command like "find":
Ex.:
for var in listing_var
do
find . -name $var ... ...
done
I've thought about syntax like :
find . -type d -name *[A-z][$var] ...
or
find . -type d -exec grep -i $var
But i've some problem to implement it.
|