镜像字符串
如何镜像字符串? 如果发现这个:echo $("123" | rev)
。这很好用。但是当我将它放入变量中时,它不会显示任何内容:
output=$("123" | rev)
echo $output
我该如何完成此操作?
How can I mirror a string?
If found this: echo $("123" | rev)
. This works fine. But when I put it in a variable, it doesn't display anything:
output=$("123" | rev)
echo $output
How can I get this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为您修复了这个问题:
如果它在子 shell 中,请确保
output
不是本地的,并显式导出它:下次,您可能想在您的问题 :)
Fixed that for you:
If its in a subshell, make sure
output
is not local, and export it explicitely:Next time, you might want to mention more relevant context in your question :)