gpt4 book ai didi

ubuntu - 用 Sed 用回车替换行

转载 作者:行者123 更新时间:2023-12-04 19:10:04 26 4
gpt4 key购买 nike

我有以下要更改的文件:

authorize {
update request {
Monthly-Usage = "%{sql:SELECT COALESCE((SUM(`acctoutputoctets`)), 0) FROM radacct WHERE `username`='%{User-Name}' AND Month(acctupdatetime)=(Month(NOW())) AND Year(acctupdatetime)=Year(NOW())}"
}

filter_username
etc


}

使它变成这样(更新请求 { ... } 被删除)
authorize {

filter_username
etc
}

我查找了一些示例并想出了这个,但它不起作用:
sed -i 'N; s/update request {\nMonthly-Usage = "%{sql:SELECT COALESCE((SUM(`acctoutputoctets`)), 0) FROM radacct WHERE `username`='"'"'%{User-Name}'"'"' AND Month(acctupdatetime)=(Month(NOW())) AND Year(acctupdatetime)=Year(NOW())}"\n}//g' /etc/freeradius/3.0/sites-enabled/default

最佳答案

这可能对您有用(GNU sed):

sed '/^authorize {$/,/^}$/c\authorize {\n ...\n}' file

使用范围来更改文件。

关于ubuntu - 用 Sed 用回车替换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58275379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com