ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
需要安装zenity! **sudo apt install zenity** 实现使用以下函数: ```bash login(){ ps=`zenity --title="身份验证" --password` echo $ps if test $ps then echo $ps | sudo -S test true if [[ $? -gt 0 ]] then zenity --info --text="密码错误!" exit 1 fi else zenity --info --text="密码为空或者用户主动取消登录!" exit 1 fi } ```