Bash 脚本中的反引号和 $() 有什么区别?

发布于 2024-12-27 22:48:41 字数 242 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开柳相依 2025-01-03 22:48:41

没有任何语义差异。反引号语法是较旧且功能较弱的版本。请参阅 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文