shell 读取文件指定单行 多行 连续行 倒数几行
2020-08-04 本文已影响0人
cain07
三种方法
1、tail -n +/-数字 文件名
2、head -n 数字 文件名
3、sed -n "开始行,结束行p" 文件名
下面分别介绍这几种方法
cd 到要文件所在目录。cd到要查看指定行数内容的文件所在目录,本文以SpecialVariable.sh文件为例,cd /home/test/shell/,如下图
image1.tail -n +/-数字 文件名
tail -n +/-数字 文件名
tail -n -数字 文件名,表示查看文件的最后几行,比如查看SpecialVariable.sh的最后5行,
tail -n -5 SpecialVariable.sh
如下图
imagetail -n +数字 文件名
tail -n +数字 文件名,表示查看文件的某一行到最后一行,比如查看SpecialVariable.sh的第3行到最后一行,
tail -n +3 SpecialVariable.sh
如下图
image2.head -n 数字 文件名
head -n 数字 文件名,表示查看文件前几行的内容,比如查看SpecialVariable.sh的前3行内容,
head -n 3 SpecialVariable.sh
如下图
image读取文件列表倒数2行
ls /data/mysql/log/binlog |head -n -2
3.sed -n "开始行,结束行p" 文件名
sed -n "开始行,结束行p" 文件名,表示查看文件的开始行到结束行的内容,
sed -n "5,9p" SpecialVariable.sh
如下图
image接分号,表示打印特定行,如下命令只会打印出第一行与第十行
sed -n '1p;10p' test.txt
接逗号,表达连续的行娄,如下命令打印出第一行到第十行
sed -n '1,10p' test.txt
如下命令打印1~5行与第9行.
sed -n '1,5p;9p' test.txt