Skip to content

Instantly share code, notes, and snippets.

View Gautier's full-sized avatar

Gautier Hayoun Gautier

View GitHub Profile
@Gautier
Gautier / todo.sh
Created May 21, 2011 11:56 — forked from AdrienLemaire/todo.sh
Find all the TODO in a django/android project which need to be fixed
#!/bin/sh
# Find all the TODO in the code which need to be fixed
# Android
if [ -f AndroidManifest.xml ]; then
echo '\nJava'
git grep -In "\(TODO\)\|\(XXX\)" -- '*.java'
echo "Resources"
git grep -In "\(TODO\)\|\(XXX\)" -- '*.xml'