Skip to content

Instantly share code, notes, and snippets.

@externvoid
Last active December 21, 2015 06:16
Show Gist options
  • Save externvoid/e459fbcbe749882ee9b1 to your computer and use it in GitHub Desktop.
Save externvoid/e459fbcbe749882ee9b1 to your computer and use it in GitHub Desktop.
grep, findをリカーシブに実行するコマンド
grepをリカーシブに実行するためのメモ
grep -r --include "*.swift" NSSearch .
find . -name "*.swift" | xargs grep NSSearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment