Skip to content

Instantly share code, notes, and snippets.

@czQery
Created April 17, 2022 17:17
Show Gist options
  • Save czQery/d62fc71f03cf6455778ba3d8bb200d21 to your computer and use it in GitHub Desktop.
Save czQery/d62fc71f03cf6455778ba3d8bb200d21 to your computer and use it in GitHub Desktop.
Git calculate lines

Git calculate lines

Calculate the number of lines for specific file formats in the git repository

Linux

git ls-files | grep -P ".*(go|js|html|hbs)" | xargs cat | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment