将ECHO的结果存储在变量中而无需运行

发布于 2025-01-18 14:44:03 字数 439 浏览 0 评论 0原文

我正在尝试创建一个称为$ spim的变量,该变量是spim的结果,但它运行spim,这不是我的意图。

➜  10 git:(main) ✗ echo "$(which spim)"              
/usr/bin/spim
➜  10 git:(main) ✗ $SPIM=$(echo "$(which spim)")     
SPIM Version 8.0 of January 8, 2010
Copyright 1990-2010, James R. Larus.
All Rights Reserved.
See the file README for a full copyright notice.
Loaded: /usr/lib/spim/exceptions.s
(spim) exit

I am trying to create a variable called $SPIM that holds the result of which spim but it instead runs the spim which is not my intention.

➜  10 git:(main) ✗ echo "$(which spim)"              
/usr/bin/spim
➜  10 git:(main) ✗ $SPIM=$(echo "$(which spim)")     
SPIM Version 8.0 of January 8, 2010
Copyright 1990-2010, James R. Larus.
All Rights Reserved.
See the file README for a full copyright notice.
Loaded: /usr/lib/spim/exceptions.s
(spim) exit

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眉目亦如画i 2025-01-25 14:44:03

使用 bash 在这里运行没有问题(我没有安装 spim)。
无需再次echo

$ SPIM=$(which ls)
$ echo $SPIM
/usr/bin/ls

Runs here with bash without problem (I do not have spim installed).
No need for echo again.

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