linux文件权限监控,shell脚本:通过shell实现linux用户管理和监控

shell脚本:通过shell实现linux用户管理和监控

界面展示:

2835950_201607072203540283718355.jpg

创建shell脚本文件:

touch menu.sh

touch index.sh

touch welcome.sh

赋予脚本文件可执行权限:

chmod a+x menu.sh index.sh welcome.sh

menu.sh#!/bin/bash

#menu.sh

function menu(){

title="My Home"

name="Randy"

time=`date +%Y-%m-%d`

cat <

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

##            ***`echo -e "\e[32m $title \e[0m"`***                          ##

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

##1)Add a user                                                 ##

##2)View all users                                             ##

##3)Set passwd for user                                        ##

##4)Delete a user                                              ##

##5)Print disk space                                           ##

##6)Print mem space                                            ##

##7)Retrun menu     ##

##8)Logout                                                     ##

##9)Quit                                                       ##

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

##   Name:$nameDate:$time     ##

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

qaz

}

4.index.sh#!/bin/bash

#index.sh

function index() {

clear

. menu.sh

menu

while true

do

read -p "Please input a option:" option

case $option in

1)

read -p "Please input username:" name

useradd $name &>/dev/null

if [ $? -eq 0 ];then

echo "user ${name} is created successfully!!!"

else

echo "user ${name} is created failly!!!"

fi

;;

2)

str=`cat /etc/passwd | awk -F: '{print $1}'`

echo -e "\e[32m$str\e[0m"

;;

3)

read -p "input the username:" name

read -p "set password for the user:" pass

echo $pass | passwd --stdin $name &>/dev/null

if [ $? -eq 0 ];then

str="${name}'s password is set successfully"

echo -e "\033[30;47$str\033[0m"

else

str="${name}'s password is set failly!!!"

echo -e "\033[31;47m$str\033[0m"

fi

;;

4)

read -p "delete the user:" name

userdel -r $name &>/dev/null

if [ $? -eq 0 ];then

str="user ${name} is delete successfully!!!"

echo -e "\033[30;47m$str\033[0m"

else

str="user ${name} is delete failly!!!"

echo -e "\033[31;47m$str\033[0m"

fi

;;

5)

str=`df -Th`

echo -e "\033[30;47m$str\033[0m"

;;

6)

str=`free -m`

echo -e "\033[30;47m$str\033[0m"

;;

7)

clear

menu

;;

8)

echo -e "\e[31mLogout ...\e[0m"

sleep 1

break

;;

9)

echo -e "\e[31mQuit successfully!!!\e[0m"

exit

;;

*)

str="Input error please re-enter"

echo -e "\033[30;47m$str\033[0m"

;;

esac

done

}

5.welcome.sh#!/bin/bash

#welcome

clear

echo -e "\e[31mWelcome\e[0m"

while true

do

read -p 'Please enter user name (Quit please input "q") :' name

if [ $name = "q" ]

then

break

else

read -p 'Please enter user password:' password

if [ $name = 'admin' ] && [ $password = 'admin' ]

then

str="Login successfully,Please Wait ......"

echo -e "\e[31m$str\e[0m"

sleep 2

. index.sh

index

else

str="Login failly"

echo -e "\e[31m$str\e[0m"

fi

fi

done

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值