0.先查看服务器有没有sed,awk,perl命令
shell
which sed
1. 通过grep查看关键信息的行数
shell
grep -n '6c15663908844e91915592d2cbfdf4c0' ./test.log
2. 通过sed截取指定行信息到新文件
shell
sed -n '865688,899698p' ./test.log > ./new_log.txt
3. 通过awk截取指定行信息到新文件
shell
awk 'NR >= 865688 && NR <= 899698' ./test.log > test.txt
4. 通过perl截取指定标签中的内容
shell
perl -0777 -ne 'while (/<FILE_VALUE>(.*?)<\/FILE_VALUE>/gs) {print $1,"\n";}' ./new_log2.txt > output_file.txt