显示 Bash 命令的输出并将输出保存在变量中
我不确定是否可能,但我想做的是运行 bash 命令并将输出存储在变量中并显示它,就像我正常启动命令一样。这是我的代码:
VAR=`svn checkout $URL`
所以我想将输出存储在 VAR 中并仍然看到结果(并且因为 svn checkout 需要很长时间,所以我不能在之后执行 echo $VAR ..)
谢谢
I'm not sure if it is possible but what I want to do is to run a bash command and storing the output in a variable AND display it as if I launched the command normally. Here is my code:
VAR=`svn checkout $URL`
So I want to store the output in VAR and still see the result (and because svn checkout takes a long time, I can't do echo $VAR just after..)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果该命令是从终端运行的,您可以执行以下操作:
If the command is run from a terminal, you can do:
您不必调用外部
tee
:甚至:
You don't have to call the external
tee
:or even: