wc是unix中拿來計算輸出行數很好用的命令

使用方式

cat list | wc -l

顯示特定檔案的行數

#顯示所有.list和.php檔的行數
wc -l *.list *.php
Categories: Unix