码迷,mamicode.com
首页 > 系统相关 > 详细

linux-shell 判断当前用户是否是root用户

时间:2020-08-20 18:54:51      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:用户id   bin   please   col   lse   root   div   use   bsp   

环境变量UID中保存的是用户ID。 root用户的UID是0。

#! /bin/bash
if [ $UID -ne 0 ]; then
 echo Non root user. Please run as root.
else
 echo Root user
fi

 

linux-shell 判断当前用户是否是root用户

标签:用户id   bin   please   col   lse   root   div   use   bsp   

原文地址:https://www.cnblogs.com/shix0909/p/13522918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!