开发者

How to add a carriage return as a character to a file?

开发者 https://www.devze.com 2023-04-12 18:30 出处:网络
I wanna have a string like: blablbabla<carriage return goes here> I m开发者_如何学运维ean the string should contain the carriage return. Is there any simple way to do it? Or if a write a prog

I wanna have a string like:

blablbabla<carriage return goes here>

I m开发者_如何学运维ean the string should contain the carriage return. Is there any simple way to do it? Or if a write a program in c and use fputs with blablabla\r, does this do the trick?


echo -ne "blablbabla\r" > /path/to/your/file


If you're using vim you can enter insert mode and type 'CTRL-v CTRL-m'. That ^M is the keyboard equivalent to \r. (see Insert the carriage return character in vim)

Inserting 0x0D in a hex editor will do the task.


SHELLVAR=$(echo -ne "blablabla\r")

See the echo man page — the -e option causes echo to interpret backslash escapes.

Also, at least in bash's normal edit mode, the same control-v control-m sequence works to insert a carriage return character literally; it will show as ^M

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号