ls -1 | wc -l
find . -type f | wc -l
find . | wc -l
find . -type d | wc -l
~/.nuget$ find . -type f | wc -l
5259
~/.nuget$ find . | wc -l
10182
The .nuget folder has 5259 files. Even worse... it has almost as many directories as folders!
ls -1 | wc -l
find . -type f | wc -l
find . | wc -l
find . -type d | wc -l
~/.nuget$ find . -type f | wc -l
5259
~/.nuget$ find . | wc -l
10182
The .nuget folder has 5259 files. Even worse... it has almost as many directories as folders!