需要递归删除许可证前导码

发布于 2024-12-01 01:54:15 字数 141 浏览 0 评论 0原文

我想递归删除

#region License
blah blah blah
blah blah blah
#endregion

.cs 文件开头的文本。我如何使用 bash 命令来做到这一点? 谢谢!

I want to recursively remove the

#region License
blah blah blah
blah blah blah
#endregion

text at the beginning of my .cs files. How can I do this with a bash command?
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

望喜 2024-12-08 01:54:15
 sed  '/#region License/,/#endregion/d' ploum.cs

应该可以解决问题。

要查找当前子目录中的所有 .cs 文件并对其运行:

find ./ -name "*.cs" -execdir sed '/#region License/,/#endregion/d' '{}' \;
 sed  '/#region License/,/#endregion/d' ploum.cs

should do the trick.

To find all .cs files in the current subdirectories and run this on them:

find ./ -name "*.cs" -execdir sed '/#region License/,/#endregion/d' '{}' \;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文