Skip to content

Instantly share code, notes, and snippets.

@Alexander-Ignition
Created July 8, 2016 13:32
Show Gist options
  • Save Alexander-Ignition/05e56855b9ccc4cb0c0c0de8bb8a96aa to your computer and use it in GitHub Desktop.
Save Alexander-Ignition/05e56855b9ccc4cb0c0c0de8bb8a96aa to your computer and use it in GitHub Desktop.
TODO and FIXME as Warnings
TAGS="TODO:|FIXME:"
echo "searching ${SRCROOT} for ${TAGS}"
find "${SRCROOT}" \( -name "*.swift" \) -print0 \
| xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" \
| perl -p -e "s/($TAGS)/ warning: \$1/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment