Created
September 16, 2016 20:29
-
-
Save facholi/40b988ab1b94009e4da3e41335504a24 to your computer and use it in GitHub Desktop.
command line notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// list all subdirectories of the current directory showing the total of files | |
find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n | |
// total of files on the current directory | |
find . -type f | wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment