find file
find -iname *.elf
# or set search path
find ./ -iname *.elf
grep string
grep -nR main
# or set search path
grep -nR 'main' ../
find -iname *.elf
# or set search path
find ./ -iname *.elf
grep -nR main
# or set search path
grep -nR 'main' ../