Skip to content

Instantly share code, notes, and snippets.

@seece
Created February 26, 2014 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seece/9232930 to your computer and use it in GitHub Desktop.
Save seece/9232930 to your computer and use it in GitHub Desktop.
Find all FIXMEs and TODOs from .cpp source files in current dir.
find . -name "*.cpp" | xargs awk '/(FIXME|TODO)/ { print FILENAME ":" NR "\t" $0 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment