Skip to content

Instantly share code, notes, and snippets.

@satoshin2071
Last active December 28, 2015 23:09
Show Gist options
  • Save satoshin2071/7576814 to your computer and use it in GitHub Desktop.
Save satoshin2071/7576814 to your computer and use it in GitHub Desktop.
[基本]再帰的にgrep
find ./ -name '*' | xargs grep hogehoge
拡張子がrbのものだけならば、以下のようにする。
find ./ -name '*.rb' | xargs grep hogehoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment