This article will show you how to find the number of files (including directories) within the current directory under Linux. Command ls -1 | wc -l Syntax Breakdown ls is the Linux command to list all files and folders in the current directory -1 will list each file on a separate line wc -l will… Read more