本文介绍了如何使say命令回显脚本中的变量值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在Mac上,有时我在脚本末尾使用say
命令,如下所示:
I'm on a Mac and sometimes I use the say
command at the end of my scripts, like so:
system('say "Finished successfully"')
但是,如果我尝试插入变量,
But if I try to insert a variable,
system('say "#{my_variable}"')
它不起作用.它仅回显变量名称.
it doesn't work. It only echoes the variable name.
我该如何解决?
推荐答案
删除反引号(内核#`):
system("say \"#{my_variable}\"")
或
system("say '#{my_variable}'")
这篇关于如何使say命令回显脚本中的变量值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!