find string in files


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



Copy this code and paste it in your HTML
  1. grep -lir "qwe"
  2. grep -lir "mod.*" ./log*
  3. find ./ -name log* -exec grep -l qwe {} \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.