使用 sed 使所有注释保持一致
Posted
技术标签:
【中文标题】使用 sed 使所有注释保持一致【英文标题】:use sed to make all comments consistent 【发布时间】:2021-01-13 15:11:23 【问题描述】:我的文件包含不均匀的 cmets:
// file1.php
// Week 4
// Quiz
//coment3
// comment4
/ /comment5
/ /comment6
%comment7
% comment8
%comment9
#comment10
# comment11
#comment12
我想通过将 #
或 //
替换为 //
后跟一个空格来使这些 cmets 保持一致。
我有:s/[ \t]*//
.
它给了我
// file1.php
// Week 4
// Quiz
//coment3
// comment4
/ /comment5
/ /comment6
#comment10
# comment11
#comment12
【问题讨论】:
【参考方案1】:sed -e 's,/[[:space:]]*/,//,' -e 's,[[:space:]]*//[[:space:]]*,// ,' -e 's/[[:space:]]*\([%#]\)[[:space:]]*/\1 /'
【讨论】:
以上是关于使用 sed 使所有注释保持一致的主要内容,如果未能解决你的问题,请参考以下文章