标签:lan 简洁 tco problems code pre sed div shell
第十行
https://leetcode-cn.com/problems/tenth-line/comments/
最简洁的做法:
awk ‘NR==10‘ file.txt # NR 代表是行数
或者:
sed -n 10p file.txt
标签:lan 简洁 tco problems code pre sed div shell
原文地址:https://www.cnblogs.com/wudanyang/p/13170303.html