find and xargs
Some working example on how to use find together with xargs find syntax: find [options] <where> <what> find -L . -name *17a69* find in local directory (.) and subdirectories (also follows symbolic links due to option -L) all files that contains 17a69 in the name find . -cmin -30 find all files in current directory …