Answers for "count all files csv file in a directory linux"

0

count all files csv file in a directory linux

find -type f -name '*.csv' -printf '.' | wc -c
Posted by: Guest on May-21-2021
0

count all files csv file in a directory linux

find ./ -type f -name '*.csv' | wc  -l
Posted by: Guest on May-21-2021

Code answers related to "count all files csv file in a directory linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language