在 bash 命令中,`expression` 会被表达式替代吗?

在 bash 命令中,`expression` 会被表达式替代吗?

我正在尝试替代

cargo run --example sync_tun -- --tun tun1 172.217.1.14 80

经过

cargo run --example sync_tun -- --tun tun1 `dig google.com +short` 80

不应该dig google.com +short用ip代替吗?

相关内容