linux – 在命令行的Subversion commit消息中使用换行或回车

前端之家收集整理的这篇文章主要介绍了linux – 在命令行的Subversion commit消息中使用换行或回车前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Ubuntu 10.04上使用Subversion 1.6.6,运行bash shell.我想在我的提交消息中插入回车符,换行符或换行符,以便在阅读日志时,评论的格式适当.它在我使用系统编辑器时工作正常,或者为提交注释指定一个文件,但我真正想要的是能够执行以下操作:
svn ci -m "This is the first line\nThis is the second line"

并将评论表达为:

This is the first line
This is the second line

我的例子不起作用,它产生输出

This is the first line\nThis is the
second line

那么,有没有办法做到这一点?如果是这样,怎么样?

解决方法

试试这个:
svn ci -m $'This is the first line\nThis is the second line'
原文链接:https://www.f2er.com/linux/399578.html

猜你在找的Linux相关文章