Skip to content

Instantly share code, notes, and snippets.

@camsaul
Created May 24, 2018 01:02
Show Gist options
  • Save camsaul/07a4e40b73e2477deed091e25ec894ea to your computer and use it in GitHub Desktop.
Save camsaul/07a4e40b73e2477deed091e25ec894ea to your computer and use it in GitHub Desktop.
How many LOC??
#! /usr/bin/env bash
find -E frontend src test -type f -regex '^.*(js|jsx|clj|css)$' -exec cat {} \; | sed '/^\s*$/d' | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment