标签:title nbsp trick 常用 article 操作 指令 span pre
1. 截取前5行:
head -5 filename
filename是你要截取的文件名,不在当前目录下要加路径的。
2.截取后5行:
tail -5 filename
3.截取5-10行,并重新输入到另一个文件中
sed -n ‘5,10p‘ filename > another_filename
输入:n,代表跳转到第n行,如:79,就跳转到第79行。
标签:title nbsp trick 常用 article 操作 指令 span pre
原文地址:https://www.cnblogs.com/shona/p/12238626.html