Skip to content

Instantly share code, notes, and snippets.

@NewProggie
Created December 7, 2015 09:21
Show Gist options
  • Save NewProggie/2fb88fb80e350a87da4d to your computer and use it in GitHub Desktop.
Save NewProggie/2fb88fb80e350a87da4d to your computer and use it in GitHub Desktop.
Grep sourcecode for words beginning with cv:: (or std:: or whatever)
grep -r src/ -e "cv::[a-zA-Z]*" -o | cut -d ':' -f2,3,4 | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment