使用 linux 命令计数文件

Counting file with linux command

我是新 linux 用户。我正在尝试计算 home(~) 目录中的所有文件。在以下步骤中也是如此 -

  1. ls -1 > fileCount # list each file in separate line and places them in fileCount
  2. wc -l fileCount # word count from the file fileCount

上面的过程给出了正确的文件数。但这是一个有点冗长的过程,需要生成一个文件。

有没有更好的方法来计算当前目录下的所有文件?

提前致谢。

你可以试试这个

ls -1 | wc -l

希望对您有所帮助