免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4881 | 回复: 9
打印 上一主题 下一主题

大师系列之二:浅谈sed标签 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-01-26 09:03 |只看该作者 |倒序浏览
先看C语言的一段代码
#include <stdio.h>
int main(int argc, char* argv[]) { int i, sum; i = 0; sum = 0; loop: i++; sum += i; if (i <= 100) { goto loop; } printf("sum = %d\n", sum); return 0; }


这样看起来是不是有点困难。

如果整理一下格式:
#include <stdio.h>

int main(int argc, char* argv[])
{
    int i, sum;

    i = 0;
    sum = 0;

loop:
    i++;
    sum += i;

    if (i <= 100)
    {
        goto loop;
    }

    printf("sum = %d\n", sum);

    return 0;
}


理解起来很容易。

sed 标签示例:
sed -e ":begin; { />>>/! { $! { N; b begin }; }; s/<<<.*>>>/COMMENT/; };" test

sed的标签也很容易,仅仅因为sed的语句习惯写在一行,所以形式上看起来比较复杂。

xx 定义标签,注意和C语言的不同,C语言是 xxx:,sed中冒号在lable前面, C语言中冒号在lable后面。

:a ba 强制跳转 : 无条件goto
:a ta 成功跳转  : 有条件goto

man:
       b label
              Branch to label; if label is omitted, branch to end of script.

       t label
              If a s/// has done a successful substitution since the last input line was read  and  since  the
              last t or T command, then branch to label; if label is omitted, branch to end of script.

       T label
              If  no  s/// has done a successful substitution since the last input line was read and since the
              last t or T command, then branch to label; if label is omitted, branch to end of script.

论坛徽章:
0
2 [报告]
发表于 2010-01-26 09:16 |只看该作者
多谢楼主

论坛徽章:
33
ChinaUnix元老
日期:2015-02-02 08:55:39CU十四周年纪念徽章
日期:2019-08-20 08:30:3720周年集字徽章-周	
日期:2020-10-28 14:13:3020周年集字徽章-20	
日期:2020-10-28 14:04:3019周年集字徽章-CU
日期:2019-09-08 23:26:2519周年集字徽章-19
日期:2019-08-27 13:31:262016科比退役纪念章
日期:2022-04-24 14:33:24
3 [报告]
发表于 2010-01-26 09:48 |只看该作者
每个标签都给个例子吧,再加上详细的讲解。以后再有人问sed标签的问题,就让他直接来看大师的帖子。

论坛徽章:
0
4 [报告]
发表于 2010-01-26 09:53 |只看该作者
sed要想学精很难

论坛徽章:
0
5 [报告]
发表于 2010-01-26 10:02 |只看该作者

回复 #3 Shell_HAT 的帖子

谢谢您的建议。

如果您有空,欢迎你添加例子。

一来我工作很忙。
二来我其实只是工作压力大,才发发帖子舒缓一下压力。

论坛徽章:
0
6 [报告]
发表于 2010-01-26 10:05 |只看该作者
哈哈大家都是上班时间泡坛子 不过我比较清闲

论坛徽章:
0
7 [报告]
发表于 2010-01-26 10:11 |只看该作者
支持

论坛徽章:
0
8 [报告]
发表于 2010-01-26 10:22 |只看该作者

回复 #1 渣渣鸟 的帖子

真的是大师系列啊,学到不少哦

论坛徽章:
5
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015年亚洲杯之朝鲜
日期:2015-03-13 22:47:33IT运维版块每日发帖之星
日期:2016-01-09 06:20:00IT运维版块每周发帖之星
日期:2016-03-07 16:27:44
9 [报告]
发表于 2010-01-26 11:47 |只看该作者
学习!
对不起,您两次发表间隔少于 30 秒,请不要灌水!

论坛徽章:
0
10 [报告]
发表于 2010-01-26 12:42 |只看该作者
好咚咚,学习
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP