免费注册 查看新帖 |

Chinaunix

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

如何在文件的行首添加#号写回原文件?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-11-28 10:59 |只看该作者 |倒序浏览
cat /etc/syslog.conf

#ident        "@(#)syslog.conf        1.5        98/12/14 SMI"        /* SunOS 5.0 */
#
# Copyright (c) 1991-1998 by Sun Microsystems, Inc.
# All rights reserved.
#
# syslog configuration file.
#
# This file is processed by m4 so be careful to quote (`') names
# that match m4 reserved words.  Also, within ifdef's, arguments
# containing commas must be quoted.
#
*.err;kern.notice;auth.notice                        /dev/sysmsg
*.err;kern.debug;daemon.notice;mail.crit        /var/adm/messages

*.alert;kern.err;daemon.err                        operator
*.alert                                                root

*.emerg                                                *

# if a non-loghost machine chooses to have authentication messages
# sent to the loghost machine, un-comment out the following line:
#auth.notice                        ifdef(`LOGHOST', /var/log/authlog, @loghost)

mail.debug                        ifdef(`LOGHOST', /var/log/syslog, @loghost)

#
# non-loghost machines will use the following lines to cause "user"
# log messages to be logged locally.
#
ifdef(`LOGHOST', ,
user.err                                        /dev/sysmsg
user.err                                        /var/adm/messages
user.alert                                        `root, operator'
user.emerg                                        *
)

cp -p /etc/syslog.conf /etc/syslog.conf.orig

cat /etc/syslog.conf.orig | grep '^[ ]*[^#]'

*.err;kern.notice;auth.notice                        /dev/sysmsg
*.err;kern.debug;daemon.notice;mail.crit        /var/adm/messages
*.alert;kern.err;daemon.err                        operator
*.alert                                                root
*.emerg                                                *
mail.debug                        ifdef(`LOGHOST', /var/log/syslog, @loghost)
ifdef(`LOGHOST', ,
user.err                                        /dev/sysmsg
user.err                                        /var/adm/messages
user.alert                                        `root, operator'
user.emerg                                        *
)

把这个输出的内容,行首都加一个#号,并写回原来的文件 ,如何实现?

论坛徽章:
0
2 [报告]
发表于 2007-11-28 11:05 |只看该作者
cat /etc/syslog.conf | sed 's/^/#/' >>/etc/syslog.conf

论坛徽章:
0
3 [报告]
发表于 2007-11-28 11:20 |只看该作者
要求空行,不加#号,可是你都加了!

论坛徽章:
23
15-16赛季CBA联赛之吉林
日期:2017-12-21 16:39:27白羊座
日期:2014-10-27 11:14:37申猴
日期:2014-10-23 08:36:23金牛座
日期:2014-09-30 08:26:49午马
日期:2014-09-29 09:40:16射手座
日期:2014-11-25 08:56:112015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:49:0315-16赛季CBA联赛之山东
日期:2017-12-21 16:39:1915-16赛季CBA联赛之广东
日期:2016-01-19 13:33:372015亚冠之山东鲁能
日期:2015-10-13 09:39:062015亚冠之西悉尼流浪者
日期:2015-09-21 08:27:57
4 [报告]
发表于 2007-11-28 11:24 |只看该作者
sed '/^$/!s/^/#/' /etc/syslog.conf >>/etc/syslog.conf

论坛徽章:
0
5 [报告]
发表于 2007-11-28 11:27 |只看该作者

  1. sed -i -r '/^[[:blank:]]*$/!s/^/#/'  数据文件
复制代码

论坛徽章:
0
6 [报告]
发表于 2007-11-28 11:30 |只看该作者
还有已经有#号的也要排除 !

论坛徽章:
0
7 [报告]
发表于 2007-11-28 11:43 |只看该作者
sed -i '/^[^#]/{h;G;/^[^#]/s/^/#/}' /etc/syslog.conf

论坛徽章:
0
8 [报告]
发表于 2007-11-28 12:23 |只看该作者
sed -i '/^[^#]/{h;G;/^[^#]/s/^/#/}' /etc/syslog.conf

可以解释一下么?

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-04 09:56:11数据库技术版块每日发帖之星
日期:2016-08-03 06:20:00数据库技术版块每日发帖之星
日期:2016-08-04 06:20:00
9 [报告]
发表于 2007-11-28 13:05 |只看该作者
awk '/^[ \t]*[^# \t]/{printf "#"}{print}'
sed -r 's/^([ \t]*[^# \t])/#\1/'
sed需要版本支持,GNU低版本sed对\t解释并非制表符,高版本以上命令正确

[ 本帖最后由 cjaizss 于 2007-11-28 15:53 编辑 ]

论坛徽章:
0
10 [报告]
发表于 2007-11-28 13:05 |只看该作者

  1. sed -i -r '/^$/b;/^#/b;s/^/#/' /etc/syslog.conf
复制代码


解释:
/^$/b  如果是空行,跳过所有的后续命令
/^#/b  如果开头是#,跳过所有的后续命令
s/^/#/ 在行首加#

注:
有什么要求,最好一次提出,不要等别人写出解答后再提新的条件
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP