Technology and me

// How to count the number of files in a directory

Non recursive

find targetdir -type f -maxdepth 1 | wc -l 

Recursive

find targetdir -type f | wc -l 

Recursive and follow symlink

find targetdir -type f -follow | wc -l 

Billets similaires

Comments are disabled

RSS Feed
Social ...
Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Noncommercial-Share Alike 3.0 Unported