Answers for "get number of files in directory shell script"

1

bash command to find the number of files in a directory

ls -1q  | wc -l
Posted by: Guest on May-21-2020
3

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 "get number of files in directory shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language