【shell脚本】匹配文件中特定的段落

自己用shell脚本写了一个匹配文件中特定段落的小程序,现将思路和代码分享如下:

实现思路:

  1. 文件中特定的段落的开始和结束位置必须有相应的标记;
  2. 首先使用grep找到开始标记和结束标记所在行的行号;
  3. 计算结束和开始标记之间有多少行;
  4. 使用grep -A获取开始和结束标记之间的段落;

代码如下:

#!/bin/bash
# getlog.sh

#######################################################
# usage:         sh getlog.sh <filename> [outfilename]
# version:        1.0 
# author:        cnpirate
# release date:    2012-09-26
# contact:        zhaixing@qq.com
#######################################################

if [ "$1" == "--help" ]; then
    echo "usage: sh getlog.sh <filename> [outfilename]"
    exit 1
fi

if [ "$1" == "" ]; then
    echo "no file input!"
    echo "please use --help for usage."
    exit 2
fi

if [ ! -f "$1" ]; then
    echo "$1 is not a file!"
    echo "please use --help for usage."
    exit 3
fi

# the begining flag of the section
BeginFlag="<?xml"
# the ending flag of the section
EndFlag="</TestRun>"

declare -i Bnum
declare -i Enum
declare -i nums

# line number of the beginning flag
Bnum=$(grep -n "$BeginFlag" $1 | cut -d: -f1)
# line number of the ending flag
Enum=$(grep -n "$EndFlag" $1 | cut -d: -f1)
# lines between the begining and ending flag
nums=$(($Enum-$Bnum))

# output the result into stdout
if [ "$2" == "" ]; then
    grep -A $nums "$BeginFlag" $1
    exit 0
fi

# output the result into outfile
grep -A $nums "$BeginFlag" $1 > $2

 

参考文献:

[1].鸟哥的Linux私房菜-基础篇关于shell脚本的介绍,http://vbird.dic.ksu.edu.tw/linux_basic/0340bashshell-scripts.php

转载于:https://www.cnblogs.com/cnpirate/archive/2012/09/26/2704280.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值