用户名判断

#!/usr/bin/env bash
if [ $UID -eq 0 || $USER == "root" ]
then
    yum install -y vsftpd
else
   echo "you are not admin!"
fi