Search for files


/ Published in: Bash
Save to your folder(s)

searches for any php file in the current directory and sub-directories they applies the grep filter for anything with nav in the title


Copy this code and paste it in your HTML
  1. find . -name '*.php' -exec grep "nav*" {} \;

Report this snippet


Comments


You need to login to view comments.