• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    linux 判断当前用户是否是root
    linux 中,如何判断当前用户是否是root 呢?
    判断当前用户是否是root

    复制代码
    代码如下:

    #---------------------------- root user check ---------------------start
    if [ `id -u` -ne 0 ]; then
    echo "Please re-run ${this_file} as root."
    exit 1
    fi
    #---------------------------- root user check ---------------------end
    if [ x"$USER" = x"" ];then
    if id |grep "^uid=0(root)">/dev/null ;then
    :
    else
    echo "Please rerun `basename $0` as root ."
    exit 1
    fi
    else
    if [ ! x"$USER" = x"root" ];then
    echo "Please rerun `basename $0` as root ."
    exit 1
    fi
    fi
    #=============== check current user start ================
    if [ ! $USER = root ];then
    echo "Please rerun this script as root ."
    exit 1
    fi
    #=============== check current user end ================
    #!/bin/sh
    if id |grep "^uid=0(root)">/dev/null ;then
    echo is root
    else
    echo not root
    fi
    check_user(){
    if [ $UID -ne 0 ];then
    echo "Current user is not ROOT."
    echo "Please rerun the installer as Root user."
    exit 11
    fi
    }
    上一篇:Linux系统进程深入理解
    下一篇:rsync+inotify实现多台web数据动态同步操作步骤
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    linux 判断当前用户是否是root linux,判断,当前,用户,是否是,