如何在终端中提示用户按 Enter 退出以使终端不会自动关闭?

如何在终端中提示用户按 Enter 退出以使终端不会自动关闭?

这是我的 Port.sh 文件

echo 'Give me a maximum of 5 seconds to run please.'
lsof -i | grep Xvnc | grep ESTABLISHED | grep $USER
lsof -i | grep $USER | grep Xvnc | grep -o -P '(?<=:).*(?=->)'
echo 'Brought to you by a cloudy and unlucky day.'
echo 'Press enter to exit'

我想让终端等待用户在最后一次回显后按 Enter 键,然后再关闭。

我的 ubuntu 桌面环境上的所有用户都将终端设置为在脚本完成后关闭。

谁能告诉我我能做什么让终端等待用户按 Enter 键。

我用谷歌搜索过,没有找到相关的内容。

答案1

在脚本末尾添加:

read junk

bash手册了解更多信息。

相关内容