Windows 是否有输出 CRLF 文件的“补丁”版本?

发布于 2024-09-13 15:26:18 字数 142 浏览 2 评论 0原文

我正在使用 UnxUtils(在 Windows 上)中的 patch,它可以工作(我的文件补丁正常),但输出的文件具有 LF 而不是 CRLF 行结尾。是否有相当于使用 CRLF 而不是 LF 输出的 patch

I am using patch from UnxUtils (on Windows), which works (my file patches fine) but the outputted file has LF instead of CRLF line endings. Is there an equivilent to patch which outputs using CRLF instead of LF?

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

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

发布评论

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

评论(1

画离情绘悲伤 2024-09-20 15:26:22

啊哈,原来我正在寻找 --binary 选项。

patch -p0 --binary < my.cpp.diff

仅供参考,这适用于从此命令生成的补丁:

diff -ac --binary path\to\my.cpp path\to\my.cpp.mine > my.cpp.diff

Aha, turns out I was looking for the --binary option.

patch -p0 --binary < my.cpp.diff

FYI, this works with patches generated from this command:

diff -ac --binary path\to\my.cpp path\to\my.cpp.mine > my.cpp.diff
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文