1、先使用grep -n 打印出文件的行号
2、再使用tail 打印出最后一行
3、接着使用awk打印出第一列就是行数,命令如下

grep -n '.*' nowcoder.txt | tail -n 1 | awk -F : '{print $1}'