Linux脚本——判断是否使用root用户

#!/bin/bash

##################################################################
# 
# Apply For:  system init for CentOS/SLES/Ubuntu
# Auth Name:  wangwei1
# ModifDate:  2020-9.8
# VersionNo:  v1.0
# Description: Linux Userdata for ShangHai ENV

##################################################################

if [ `whoami` = "root" ];then
    echo "user:root"
else
    echo "you need root."
    exit
fi

 

posted on 2024-05-07 23:35  gkhost  阅读(24)  评论(0编辑  收藏  举报

导航