wc -l file.txt
输出行数和文件名。
我只需要数字本身(而不是文件名)。
我可以做这个
wc -l file.txt | awk '{print $1}'
但也许有更好的方法?
试试这个方法:
wc -l < file.txt