Skip to content

Instantly share code, notes, and snippets.

@pekkavaa
Created February 26, 2014 16:22
Show Gist options
  • Save pekkavaa/9232930 to your computer and use it in GitHub Desktop.
Save pekkavaa/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