#!/usr/bin/perl -w $|=1; my ($findin,$grepfor)=@ARGV; my $in=qq(find -name '*$findin' -exec grep -Hn '$grepfor' {} \\;); print `$in`;