Tuesday, 1 September 2015

File Count in Multiple Folders in Linux



Hi,

Please see the below linux command to display files present in multiple folder.

<SNIP>

find Target_Directory -type f | wc -l

Target_Directory : your base directory

-type f : tells that files are to be searched not folders

</SNIP> 

 

No comments:

Post a Comment