免费注册 查看新帖 |

Chinaunix

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

[文本处理] sed问题,求大神方法! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-11-04 10:01 |只看该作者 |倒序浏览
本帖最后由 fenghedong_007 于 2015-11-04 10:02 编辑
  1. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  2.     #
  3.     #location ~ \.php$ {
  4.     #    proxy_pass   127.0.0.1;
  5.     #}

  6.     # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  7.     #
  8.     #location ~ \.php$ {
  9.     #    root           html;
  10.     #    fastcgi_pass   127.0.0.1:9000;
  11.     #    fastcgi_index  index.php;
  12.     #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  13.     #    include        fastcgi_params;
  14.     #}

  15.     # deny access to .htaccess files, if Apache's document root
  16.     # concurs with nginx's one
  17.     #
  18.     #location ~ /\.ht {
  19.     #    deny  all;
  20.     #}
复制代码
想替换掉第二个#location ~ \.php$ {}之间的#,请不要用行号或者从模式到匹配行的方法来解决问题。
采用其他方法直接匹配第二个#location ~ \.php$ {}之间的内容
请大神提供下方法,我参考参考,谢谢了!

论坛徽章:
32
处女座
日期:2013-11-20 23:41:20双子座
日期:2014-06-11 17:20:43戌狗
日期:2014-06-16 11:05:00处女座
日期:2014-07-22 17:30:47狮子座
日期:2014-07-28 15:38:17金牛座
日期:2014-08-05 16:34:01亥猪
日期:2014-08-18 13:34:25白羊座
日期:2014-09-02 15:03:55金牛座
日期:2014-11-10 10:23:58处女座
日期:2014-12-02 09:17:52程序设计版块每日发帖之星
日期:2015-06-16 22:20:002015亚冠之塔什干火车头
日期:2015-06-20 23:28:22
2 [报告]
发表于 2015-11-04 10:31 |只看该作者
是要这个效果么?
  1. [root@localhost ~]# sed -r '/#location/{x;s/$/./;/^..$/{x;:1;s/#//;/}/b;n;b1};x}' i
  2. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  3.     #
  4.     #location ~ \.php$ {
  5.     #    proxy_pass   127.0.0.1;
  6.     #}

  7.     # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  8.     #
  9.     location ~ \.php$ {
  10.         root           html;
  11.         fastcgi_pass   127.0.0.1:9000;
  12.         fastcgi_index  index.php;
  13.         fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  14.         include        fastcgi_params;
  15.     }

  16.     # deny access to .htaccess files, if Apache's document root
  17.     # concurs with nginx's one
  18.     #
  19.     #location ~ /\.ht {
  20.     #    deny  all;
  21.     #}
  22. [root@localhost ~]#
复制代码

论坛徽章:
84
每日论坛发贴之星
日期:2015-12-29 06:20:00每日论坛发贴之星
日期:2016-01-16 06:20:00每周论坛发贴之星
日期:2016-01-17 22:22:00程序设计版块每日发帖之星
日期:2016-01-20 06:20:00每日论坛发贴之星
日期:2016-01-20 06:20:00程序设计版块每日发帖之星
日期:2016-01-21 06:20:00每日论坛发贴之星
日期:2016-01-21 06:20:00程序设计版块每日发帖之星
日期:2016-01-23 06:20:00程序设计版块每日发帖之星
日期:2016-01-31 06:20:00数据库技术版块每日发帖之星
日期:2016-01-16 06:20:00程序设计版块每日发帖之星
日期:2016-01-16 06:20:00程序设计版块每日发帖之星
日期:2016-01-14 06:20:00
3 [报告]
发表于 2015-11-04 10:38 |只看该作者

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
4 [报告]
发表于 2015-11-04 15:06 |只看该作者
回复 1# fenghedong_007

$ awk '/#location ~ \\[.]php[$] {/{P=1}P{sub(/#/,"")}/}/{P=0}1' FILE
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    location ~ \.php$ {
        proxy_pass   127.0.0.1;
    }

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}

   

论坛徽章:
28
15-16赛季CBA联赛之八一
日期:2016-02-22 19:10:4215-16赛季CBA联赛之深圳
日期:2016-12-01 10:34:0415-16赛季CBA联赛之新疆
日期:2016-12-07 10:24:2915-16赛季CBA联赛之同曦
日期:2016-12-15 12:06:43CU十四周年纪念徽章
日期:2016-12-18 13:03:4415-16赛季CBA联赛之吉林
日期:2017-01-03 15:52:2515-16赛季CBA联赛之辽宁
日期:2017-01-04 14:58:2415-16赛季CBA联赛之辽宁
日期:2017-01-15 09:42:512016科比退役纪念章
日期:2017-02-06 17:21:50黑曼巴
日期:2017-02-10 15:46:1215-16赛季CBA联赛之上海
日期:2017-03-18 10:14:5415-16赛季CBA联赛之青岛
日期:2017-03-18 22:00:44
5 [报告]
发表于 2016-08-27 11:45 |只看该作者
本帖最后由 moperyblue 于 2016-08-27 12:52 编辑
  1. sed '0,/location ~ \\.php/b;/location ~ \\.php/{x;/^$/{x;:a;N;/}/!ba;s/#//Mg;h;b};x}'
  2. sed '0,/location ~ \\.php/b;/location ~ \\.php/{x;/^$/{x;:a;s/#//;n;/}/!ba;s/#//;h;b};x}'
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP