2017-05-08 120 views
-3

當我在終端中運行這個命令時,它顯示一個數字。 使用cd命令掛載另一個文件夾時,數字發生變化。下面的命令做什麼ls -la |排序| wc -l

+0

感謝您的幫助的投入! – 5lam

+0

[explainhell](https://explainshell.com/explain?cmd=ls+-la+%7C+sort+%7C+wc+-l)來拯救! –

+0

一次只能走一步。 'ls -la'(在一個小目錄中)是做什麼的?現在添加'| sort'它是如何改變的。現在添加'| wc -l'哦..方式不同吧?編寫cmd鏈並對其進行分解(用於調試)是Unix/Linux shell腳本的主要關鍵(也是美觀)。小程序可以很好地完成一件事,並且可以通過管道('|')連接在一起。祝你好運。 – shellter

回答

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 

«|»一個命令的輸出發送到下一個