PS1命令 - Bash

时间:2016-02-04 16:27:41

标签: bash ps1

我试图让PS1命令与bash一起使用。

我要做的是捕获用户的数据并输入它以更改命令行上的字段。

我知道命令是PS1="MadMike",但我要做的是从读取行捕获的数据并将其插入命令然后运行命令

#PS1 Method
1)
echo -e "\n"
#Sub Menu for Method
echo "============================================"
echo "What would you like your command line to say"
echo "============================================"
echo -e "\n"
#Waiting for user input
echo "Type below"

#Capturing User input
read input
#Setting PS1 input
PS1="input:"

1 个答案:

答案 0 :(得分:0)

您已错过$符号以获取input变量的内容。它应该是:

PS1="$input:"