Bash shell command that returns the number of lines in a file?
本问题已经有最佳答案,请猛点这里访问。
google的主题行返回一个LO命令告诉文件大小。像:
1 2 | ole@waddup:~/$ du -h package.json 4.0K package.json |
我们怎样才能找到文件中的行数。例如,如果
使用wc命令行实用程序:
wc-l包.json
How can we find the number of lines in the file
1 | wc -l <file> |