/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//this command find any file name that contains "searchterm" grep -lir "text to find" * //this command finds files with the searchterm name find / -iname "*searchterm*" ;