Skip to content

Instantly share code, notes, and snippets.

@froop
Created July 7, 2011 08:15
Show Gist options
  • Save froop/1069080 to your computer and use it in GitHub Desktop.
Save froop/1069080 to your computer and use it in GitHub Desktop.
[bsh] find+grepコマンドの合わせ技サンプル for Cygwin
# 「.c」「.cpp」ファイルをfindし、見つかったファイルをさらにgrepするサンプル
find . -name '*.c' -or -name '*.cpp' | xargs grep 'WriteFile('
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment