Answers for "bash count files"

1

bash command to find the number of files in a directory

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

count file linux

$ ls -l | wc -l

269

$ ls | wc -l

268
Posted by: Guest on December-01-2021
0

count file linux

$ find /etc -type f | wc -l

2074
Posted by: Guest on December-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language