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

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

时间:2016-07-07 22:40:11      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:shell编程   shell脚本   shell学习   shell笔记   

    学习shell做的第一个脚本,感谢云知梦李强强老师的shell编程教程

  1. 创建shell脚本文件:

    touch menu.sh

    touch index.sh

    touch welcome.sh

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

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

  3. menu.sh

#!/bin/bash
#menu.sh
function menu(){
title="My Home"
name="Randy"
time=`date +%Y-%m-%d`
cat << qaz
#######################################################################
##  		      	    ***`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:$name				Date:$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

6.界面展示:

技术分享


本文出自 “郭昕技术博客” 博客,请务必保留此出处http://guoxin2014.blog.51cto.com/4020074/1812437

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

标签:shell编程   shell脚本   shell学习   shell笔记   

原文地址:http://guoxin2014.blog.51cto.com/4020074/1812437

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