Skip to content

Instantly share code, notes, and snippets.

@siberianisaev
Created November 13, 2020 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siberianisaev/495a7c062c03e45abf75503c6bb3e07d to your computer and use it in GitHub Desktop.
Save siberianisaev/495a7c062c03e45abf75503c6bb3e07d to your computer and use it in GitHub Desktop.
Count of lines in project (include UI)
find . -type d \( -path ./Pods -o -path ./Vendor \) -prune -o \( -iname \*.m -o -iname \*.mm -o -iname \*.h -o -iname \*.swift -o -iname \*.storyboard -o -iname \*.xib \) -print0 | xargs -0 wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment