Here string adds line break

旧时模样 提交于 2019-11-30 03:02:53

问题


It seems that here string is adding line break. Is there a convenient way of removing it?

$ string='test'
$ echo -n $string | md5sum
098f6bcd4621d373cade4e832627b4f6  -
$ echo $string | md5sum
d8e8fca2dc0f896fd7cb4cb0031ba249  -
$ md5sum <<<"$string"
d8e8fca2dc0f896fd7cb4cb0031ba249  -

回答1:


Yes, you are right: <<< adds a trailing new line.

You can see it with:

$ cat - <<< "hello" | od -c
0000000   h   e   l   l   o  \n
0000006

Let's compare this with the other approaches:

$ echo "hello" | od -c
0000000   h   e   l   l   o  \n
0000006
$ echo -n "hello" | od -c
0000000   h   e   l   l   o
0000005
$ printf "hello" | od -c
0000000   h   e   l   l   o
0000005

So we have the table:

         | adds new line |
-------------------------|
printf   |      No       |
echo -n  |      No       |
echo     |      Yes      |
<<<      |      Yes      |

From Why does a bash here-string add a trailing newline char?:

Most commands expect text input. In the unix world, a text file consists of a sequence of lines, each ending in a newline. So in most cases a final newline is required. An especially common case is to grab the output of a command with a command susbtitution, process it in some way, then pass it to another command. The command substitution strips final newlines; <<< puts one back.




回答2:


fedorqui's helpful answer shows that and why here-strings (and also here-documents) invariably append a newline.

As for:

Is there a convenient way of removing it?

In Bash, use printf inside a process substitution as an "\n-less" alternative to a here-string:

... < <(printf %s ...)

Applied to your example:

$ md5sum < <(printf %s 'test')
098f6bcd4621d373cade4e832627b4f6

Alternatively, as user202729 suggests, simply use printf %s in the pipeline, which has the added advantage of not only using a more familiar feature but also making the command work in (more strictly) POSIX-compliant shells (in scripts targeting /bin/sh):

$ printf %s 'test' | md5sum
098f6bcd4621d373cade4e832627b4f6



回答3:


As a "here doc" add a newline:

$ string="hello test"
$ cat <<_test_ | xxd
> $string
> _test_
0000000: 6865 6c6c 6f20 7465 7374 0a              hello test.

Also a "here string" does:

$ cat <<<"$string" | xxd
0000000: 6865 6c6c 6f20 7465 7374 0a              hello test.

Probably the easiest solution to get an string non-ending on newline would be printf:

$ printf '%s' "$string" | xxd
0000000: 6865 6c6c 6f20 7465 7374                 hello test


来源:https://stackoverflow.com/questions/37728699/here-string-adds-line-break

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!