以下命令执行什么ls -la |排序| wc -l

时间:2017-05-08 22:20:47

标签: linux ubuntu

当我在终端中运行此命令时,它会显示一个数字。 使用cd命令挂载另一个文件夹时,数字会更改。

1 个答案:

答案 0 :(得分:0)

ls -la // List files in your current directory (hidden files are included thanks to the -a)

sort // Sort entries returned by the previous command

wc -l // Returns the number of lines returned by the previous command

«|»将一个命令的输出发送到下一个命令的输入