Skip to content

Instantly share code, notes, and snippets.

@olbartek
Created July 2, 2018 13:54
Show Gist options
  • Save olbartek/539386496b253b5ba51f842101dc1035 to your computer and use it in GitHub Desktop.
Save olbartek/539386496b253b5ba51f842101dc1035 to your computer and use it in GitHub Desktop.
Count Xcode project number of lines exluding Pods directories
find . -path ./Pods -prune -o -name "*.swift" -print0 | xargs -0 wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment