标签: bash
我无法弄清楚如何将字符串插入bash终端。
以下是我想要实现的目标:
$./insert.sh $this was inserted by script[Cursor is here]
我仍然希望能够编辑“这是由脚本插入的”。如果不按回车,不应该执行。粘贴到终端就会留下文本而不执行它(假设没有新行)。
答案 0 :(得分:0)
您可以使用read内置:
read
read -e -p'$ ' -i 'this was inserted by script' var_name