Unix/Linux Count Number of Files In Folder



Unix/Linux Count Number of Files In Folder

Unix/Linux Count Number of Files In Folder

This video demonstrates Unix/Linux commands to count the number of files in the directory

1) ls -l | wc -l
2) find -maxdepth 1 -type f | wc -l

Comments are closed.