Skip to content

Instantly share code, notes, and snippets.

@pvarsh
Created December 22, 2015 13:55
Show Gist options
  • Save pvarsh/bdedf24a31b24f55556d to your computer and use it in GitHub Desktop.
Save pvarsh/bdedf24a31b24f55556d to your computer and use it in GitHub Desktop.
CSV Row Count
alias csvrowcount='for i in `find . -name "*.csv"`; do echo "$i"; csvstat --count $i; done'
alias csvfilecount='find . -name "*.csv" | wc -l'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment