Answers for "terminal number of files in directory"

1

terminal get number of files in dir

#Type in terminal in the directory:

ls -1 | wc -l
Posted by: Guest on July-22-2021
2

terminal count files in directory

ls | wc -l        or       ls <path> | wc -l
Posted by: Guest on October-09-2020

Code answers related to "terminal number of files in directory"

Browse Popular Code Answers by Language