#!/bin/bash test=$(env|grep USER|cut -f 2 -d "=") if [ "$test"=="root" ] then echo "current user is root" fi
判断登录是否root 用户啊