Skip to content

Instantly share code, notes, and snippets.

@manxisuo
Created July 23, 2013 16:02
Show Gist options
  • Save manxisuo/6063617 to your computer and use it in GitHub Desktop.
Save manxisuo/6063617 to your computer and use it in GitHub Desktop.
在文件夹中搜索文本
# find 文件路径 -name '文件名称模板' | xargs grep '包含的特定文本模板'
find ./ -name '*' | xargs grep 'hello'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment