Bash

如何提示使用者在終端中按 Enter 退出以使終端不會自動關閉?

  • March 20, 2015

這是我的 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'

我想讓終端等待使用者在關閉前的最後一個迴聲後按輸入鍵。

我的 ubuntu 桌面環境中的所有使用者都將終端設置為在腳本完成後關閉。

誰能告訴我我能做些什麼來讓終端等待使用者按下輸入鍵。

我用Google搜尋過,沒有任何相關的東西出現。

在腳本末尾添加:

read junk

有關更多資訊,請參閱Bash 手冊

引用自:https://unix.stackexchange.com/questions/191507