sgadmin created the topic: My Shell Script Usage Collection
Count Total number of files in Directory and Subdirectory
> find . -type f | wc –l
Count Specific extention files in Directory and Subdirectory
> find . -type f -name \*.mnp |wc –l
Count only Directory
> find . -type d | wc –l
Latest posts by Rajesh Kumar (see all)
- Appdynamics Demo Video - December 6, 2024
- PyTorch Lab – 9 – Pytorch CUDA Semantics - December 6, 2024
- PyTorch Lab – 8 – Pytorch Install And Setup Tensorflow Hidden Layer - December 6, 2024