Skip to content

Instantly share code, notes, and snippets.

@youngshook
Created July 19, 2014 09:14
Show Gist options
  • Save youngshook/d84500b607a0af70ede3 to your computer and use it in GitHub Desktop.
Save youngshook/d84500b607a0af70ede3 to your computer and use it in GitHub Desktop.
Warning TODO/FIXME Tips in Xcode
KEYWORDS="TODO|FIXME|\?\?\?:|\!\!\!:"
find "${SRCROOT}" \( -name "*.h" -or -name "*.m" \) -and \( -path "${SRCROOT}/Pods/*" -prune -o -print0 \) | xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | perl -p -e "s/($KEYWORDS)/ warning: \$1/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment