sed 版本之间的不同行为

发布于 2024-12-05 14:13:35 字数 438 浏览 2 评论 0原文

因此,我正在开发一个将在服务器上运行的 bash 脚本。问题是相同的命令会产生不同的结果,具体取决于我运行它的位置。

输入:

Theme Name: My Theme

命令:

sed -e '/^Theme Name:/s/$/ (nightly)/' style.css

输出(本地计算机,sed 4.2.1):

Theme Name: My Theme (nightly)

输出(服务器,sed 4.1.5):

 (nightly): My Theme

给出了什么?

PS:我尝试使用awk的sub()函数,得到了类似的结果。

So, I'm working on a bash script that will run on a server. The problem is that the same command produces different results, depending on where I run it.

The input:

Theme Name: My Theme

The command:

sed -e '/^Theme Name:/s/$/ (nightly)/' style.css

The output (local machine, sed 4.2.1):

Theme Name: My Theme (nightly)

The output (server, sed 4.1.5):

 (nightly): My Theme

What gives?

PS: I tried using awk's sub() function, with similar results.

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

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

发布评论

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

评论(1

客…行舟 2024-12-12 14:13:35

看起来 style.css 文件在服务器上具有 Windows 样式的行结尾。 \r 字符将光标发送回行首。尝试对服务器上的文件使用 dos2unix

Looks like the style.css file has windows-style line endings on the server. The \r character is sending the cursor back to the beginning of the line. Try using dos2unix on the file on your server.

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