Why echo a backticks-row?

2019-03-02 06:43发布

I "inherited" some code in a project, and in one of the Bash scripts, they use echo on a backticks-row, like:

#!/bin/bash
echo `/path/command argument`

What's the difference between that and just running the command itself?

#!/bin/bash
/path/command argument

Both send the command's output to the script's stdout.

So what's the difference? Why use echo?

To combine it with a > seems even worse:

#!/bin/bash
echo `/path/command argument > /var/log/exemple.log`

1条回答
forever°为你锁心
2楼-- · 2019-03-02 07:19

It doesn't look particularly useful in its current form but one side-effect of using echo with (unquoted) backticks is that whitespace between words is lost. This is because of word splitting - every word in the output of the command is treated as a separate argument to echo, which just outputs them separated by a single space. For example:

$ echo "a   b c"
a   b c
$ echo `echo "a   b c"`
a b c

Note that this applies to all types of whitespace such as tab characters and newlines.

I'm not sure why you'd want to do this deliberately! Personally, I'd be tempted to just run the command normally.

查看更多
登录 后发表回答