我们运用wc -l来统计文件的行数
采用标准输入和标准输出,通过管道的方式 “  |  ”
采用命令“cat”获取文件的内容传给wc -l命令
#!/bin/bash
cat nowcoder.txt | wc -l