Bash 脚本中的反引号和 $() 有什么区别?
我在 Bash 脚本中看到两种不同的形式,它们似乎具有相同的功能:
`some command`
?
$(some command)
两者之间有什么区别,以及我何时应该使用它们中的每一种
I see two different forms in Bash scripts which seem to do the same:
`some command`
and
$(some command)
What is the difference between the two, and when should I use each one of them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有任何语义差异。反引号语法是较旧且功能较弱的版本。请参阅 man bash,“命令替换”部分。
如果您的 shell 支持
$()
语法,则更喜欢它,因为它可以嵌套。There isn't any semantic difference. The backtick syntax is the older and less powerful version. See man bash, section "Command Substitution".
If your shell supports the
$()
syntax, prefer it because it can be nested.