This问题/答案几乎就是我想做的事。
但是,我希望将sed
行更改为以下内容:
if(something)
{
// whitespace // code in braces of this style
}
这样的事情:
if(something) {
// whitespace // code in braces of some other style
}
即。我希望sed
行格式化已缩进到页面右侧的代码。
我是sed
的新手,所以不知道你是怎么做的。
以下是当前sed
行:sed 'N;/\n{/s// {/;P;D' $file
谢谢你:)。
答案 0 :(得分:1)
只是添加“*”有帮助吗?
sed 'N;/\n *{/s// {/;P;D'