嵌入bash命令读取字符串变量中的空间



如何将 read命令的提示变量嵌入我的bash脚本中?

rebase_prompt="Proceed with rebase? [y/n] "
read -p $rebase_prompt user_response

此代码运行时,它将出现在终端上,因为只有"继续"等待我的输入。

Proceed

我该如何将完整字符串作为提示?

将其取用

通过正确引用。

read -p "$rebase_prompt" user_response

相关内容

  • 没有找到相关文章

最新更新