Skip to content

Instantly share code, notes, and snippets.

@sonalkr132
Created March 20, 2016 17:24
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 sonalkr132/73e6fac6b551ea6f7c5a to your computer and use it in GitHub Desktop.
Save sonalkr132/73e6fac6b551ea6f7c5a to your computer and use it in GitHub Desktop.
Count number of line on github repo
#!/usr/bin/env bash
git clone --depth 1 "$1" temp-linecount-repo &&
printf "('temp-linecount-repo' will be deleted automatically)\n\n\n" &&
cloc temp-linecount-repo &&
rm -rf temp-linecount-repo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment