我想在linux上运行steam,又不想安装xterm,有两个时刻要xterm
echo -e "$*" >$tmpfile
xterm -T "$title" -e "cat $tmpfile; echo -n 'Press enter to continue: '; read input"
rm -f $tmpfile
和
# Fall back to sudo in a terminal
xterm -e sudo -p "$prompt
[sudo] password for user: " $*
posix 在这里使用 ${TERM} 而不是 xterm 是否安全?