Notes to Future Self
Grep usage
To only print out files ( and not each line in the file that matches the pattern), use
grep -l
for example:
ebdev11:shell_scripts$ find . -iname "*pl" -exec grep -l "anyone" '{}' \; -print
./run_bioconcepts_incremental.pl
./run_bioconcepts_incremental.pl
./perl/test_GTRLB.pl
./perl/test_GTRLB.pl
./update_HPO.pl
./update_HPO.pl
Newer Post
Older Post
Home