Answers for "command to know number of files in a directory"

2

command to know number of files in a directory

ls | wc -l
Posted by: Guest on February-26-2020
2

find number of files in a directory linux

find -maxdepth 1 -type d | while read -r dir; do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
Posted by: Guest on July-12-2020

Code answers related to "command to know number of files in a directory"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language