How to find the no of files on a particular folder
ls -l | wc -l
Say If you want to find a specific files nos, You can use the below command.
for eg. you want to find .gz files
ls *.gz -l | wc -l
How to find the no of files on a particular folder
ls -l | wc -l
Say If you want to find a specific files nos, You can use the below command.
for eg. you want to find .gz files
ls *.gz -l | wc -l