Skip to content

Instantly share code, notes, and snippets.

@radgeRayden
Last active October 1, 2020 16:59
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 radgeRayden/2d4810274c63d2bb523b58e81b3e6d82 to your computer and use it in GitHub Desktop.
Save radgeRayden/2d4810274c63d2bb523b58e81b3e6d82 to your computer and use it in GitHub Desktop.
Count lines of Scopes code in a directory
find . -name "*.sc" -print0 | xargs -0 -n 1 -I{} cat {} | pcregrep -Mv "^(?<pad> *)#.*\n( (?=\k<pad>).+\n)*" | pcregrep "^[ ]*.+?\$" | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment