| echo -e "==================================================================" echo -e "\033[32mBT-Panel default info!\033[0m"
 echo -e "=================================================================="
 echo  "外网面板地址:  $pool://$address
  port$auth_path" echo  "内网面板地址:  $pool://$LOCAL_IP
  port$auth_path" echo -e `$pythonV $panel_path/tools.py username`
 echo -e "password: $password"
 echo -e "\033[33mIf you cannot access the panel,\033[0m"
 echo -e "\033[33mrelease the following panel port [${port}] in the security group\033[0m"
 echo -e "\033[33m若无法访问面板,请检查防火墙/安全组是否有放行面板[${port}]端口\033[0m"
 echo -e "\033[33m注意:初始密码仅在首次登录面板前能正确获取,其它时间请通过 bt 5 命令修改密码\033[0m"
 echo -e "=================================================================="
 ;;
 *)
 if [ "${LANG}" != "en_US.UTF-8" ];then
 export LANG=en_US.UTF-8 &> /dev/null
 fi
 if [ "${LC_ALL}" != "en_US.UTF-8" ];then
 export LC_ALL=en_US.UTF-8 &> /dev/null
 fi
 $pythonV $panel_path/tools.py cli $1
 ;;
 esac
 
 [root@100 ~]#
 
 |