如何在"读取-p"之后制作文本胆大?

时间:2017-03-18 18:37:51

标签: linux bash shell unix text

我希望在使用read -p阅读之前回复文本。

如何在read -p粗体内部制作文字?我不希望用户输入变为粗体。我只想要"内容"部分大胆。

示例:read -p "content:"content:应该是粗体。

我尝试了tput bold / tput sgr0\e[1m

1 个答案:

答案 0 :(得分:2)

使用bash:

bold=$(tput bold)
normal=$(tput sgr0)
read -p "${bold}content:${normal}" input