Skip to content

Instantly share code, notes, and snippets.

@vansosnin
Last active December 19, 2018 06:23
Show Gist options
  • Save vansosnin/71f58e7b2b5549bc1ec557cca94cb8ab to your computer and use it in GitHub Desktop.
Save vansosnin/71f58e7b2b5549bc1ec557cca94cb8ab to your computer and use it in GitHub Desktop.
Count stuff in bash and powershell
find ./path/to/dir -mindepth 1 -type f -name "*.js" | wc -l # count files
find ./path/to/dir -mindepth 1 -type f -name "*.js" -exec cat {} + | wc -l # count lines
dir -Recurse *.txt | Get-Content | Measure-Object -Line # powershell count lines
Get-Childitem c:\local -Recurse | where { -not $_.PSIsContainer } | group Extension -NoElement | sort count -desc # powershell count files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment