Skip to content

Instantly share code, notes, and snippets.

@schwuk
Created February 3, 2023 14:12
Show Gist options
  • Save schwuk/780768026b35545fc5bb38d08ef3780b to your computer and use it in GitHub Desktop.
Save schwuk/780768026b35545fc5bb38d08ef3780b to your computer and use it in GitHub Desktop.
Count lines of code in a folder and copy to clipboard
#!/usr/bin/env bash
cloc . --quiet --hide-rate --csv | head -n -1 | tail -n +2 | awk -F',' '{ print $2","$5 }' | sort | awk -F',' '{ print $2}' | xclip -sel clip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment