Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oldtrafford91/6915a598691bca9cfe7b382286686804 to your computer and use it in GitHub Desktop.
Save oldtrafford91/6915a598691bca9cfe7b382286686804 to your computer and use it in GitHub Desktop.
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