Skip to content

Instantly share code, notes, and snippets.

@Exey
Created September 18, 2019 09:28
Show Gist options
  • Save Exey/1559c382489df255f7b56a5aca38da94 to your computer and use it in GitHub Desktop.
Save Exey/1559c382489df255f7b56a5aca38da94 to your computer and use it in GitHub Desktop.
Count rows in iOS App sources
find . -type d \( -path ./Pods -o -path ./Vendor \) -prune -o \( -iname \*.m -o -iname \*.mm -o -iname \*.h -o -iname \*.swift \) -print0 | xargs -0 wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment