[Shell]判斷目前使用者

來源:互聯網
上載者:User

[Shell]判斷目前使用者

判斷目前使用者是否為root,如果是提示為root使用者,如果不是提示為普通使用者

#!/bin/bash#title: testus.sh#author: orangleliu#date: 2014-08-09#desc: get current user, if it is root user, tell us it is super user or tell us is a common user#================#Function CheckUser#================CheckUser(){check_user=`whoami`if [ "$check_user" == "root" ]then echo "You are $check_user user"echo "You are a super amdin"elseecho "You are $check_user user"echo "You are a common user"fi}#================#Function Main#================Main(){CheckUser}Main
執行結果

[orangle@localhost shell]$ bash testus.sh
You are orangle user
You are a common user
[orangle@localhost shell]$ su - root
Password:
[root@localhost ~]# bash /home/orangle/shell/testus.sh
You are root user
You are a super amdin

一方面之前沒有系統的寫過shell指令碼,一方面是通過小案例來學習和總結shell。而不是通過各種文法的學習然後再去寫指令碼。

參考教程

本文出自 “orangleliu筆記本” 部落格,請務必保留此出處http://blog.csdn.net/orangleliu/article/details/38449613

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.