sed 版本之间的不同行为
因此,我正在开发一个将在服务器上运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 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 usingdos2unix
on the file on your server.