【shell 练习4】编写Shell用户管理脚本(二)

一、创建、删除、查看用户,随机生成八位数密码

#!/bin/bash
#Author:yanglt
#!/bin/bash
#Author:yanglt
#Blog:https://www.cnblogs.com/yangleitao/
#Time:2018-08-02 23:30:00
#Version:V1.0

function wait()
{
    echo -n '3秒后继续'
    for ((i=0;i<3;i++))
    do
        echo -n "...";sleep 1
    done
    echo
}
in_check(){
expr $num1 + 1 >/dev/null 2>&1
if [ $? -ne 0 ];then
    echo "please input number"
    exit 1
fi
}
empty_check(){
    if [ ! $name ];then
        echo "The input cannot be empty"
        continue
    fi
}
while true
do
cat<<EOF
#################################
1.create user
2.delete user
3.query user
4.exit
################################
EOF
read -p "Please input num:" num
in_check
case "$num" in
    1)
        read -p "please input name:" name
        empty_check
        grep -w $name /etc/passwd >/dev/null
        if [ $? -eq 0 ];then
            echo -e "$name already exist"
            exit 1
        else
            useradd -s /bin/bash $name
            echo -n `mkpasswd -l 8` |tee -a ${name}Passwd.txt|passwd --stdin $name
            echo -e "$name create successful"
        fi
        ;;
    2)
        read -p "please input delete name:" name
        empty_check
        grep -w $name /etc/passwd >/dev/null
        if [ $? -ne 0 ];then
            echo -e "$name is not exist"
            exit 0
        else
            userdel -r $name
            rm -rf ${name}Passwd.txt
            echo -e "$name delete successful"
        fi
        ;;
    3)
        read -p "please input need query name:" name
        empty_check
        grep -w $name /etc/passwd >/dev/null
        if [ $? -eq 0 ];then
            echo `grep -w $name /etc/passwd`
            echo -e `awk '{print "Password:",$0}' ${name}Passwd.txt` 
        else
            echo -e "$name is not exist"
            continue
            fi
        ;;
   *)
        exit 1
        ;;
esac
wait
done

 二、用户管理改进

[root@localhost ~]# cat UserManger03.sh 
#!/bin/bash
#Author:yanglt
#!/bin/bash
#Author:yanglt
#Blog:https://www.cnblogs.com/yangleitao/
#Time:2018-08-02 23:30:00
#Version:V1.0
. /etc/init.d/functions #调用内部函数action

function wait()
{
    echo -n '2秒后继续'
    for ((i=0;i<2;i++))
    do
        echo -n "...";sleep 1
    done
    echo
}
in_check(){
expr $num1 + 1 >/dev/null 2>&1
if [ $? -ne 0 ];then
    echo "please input number"
    exit 1
fi
}
empty_check(){
    if [ ! $name ];then
        echo "The input cannot be empty"
        continue
    fi
}
makedir(){
    dir=/yanglt/
    [ ! -n $dir ]&& mkdir $dir
}

action_check(){
if [ $? -eq 0 ];then
    action "useradd $name successful" /bin/true
else
    action "useradd $name " /bin/false
fi
}
while true
do
cat<<EOF
#################################
1.create user
2.delete user
3.query user
4.exit
################################
EOF
read -p "Please input num:" num
in_check
case "$num" in
    1)
        read -p "please input name:" name
        empty_check
        pass=`mkpasswd -l 8`
        grep -w $name /etc/passwd >/dev/null
        if [ $? -eq 0 ];then
            echo -e "$name already exist"
            exit 1
        else
            makedir
            useradd -s /bin/bash $name &>/dev/null
            echo $pass|passwd --stdin $name &>/dev/null
            action_check
            echo -e "$name\t$pass" >> /yanglt/Passwd.txt
        fi
        ;;
    2)
        read -p "please input delete name:" name
        empty_check
        grep -w $name /etc/passwd >/dev/null
        if [ $? -ne 0 ];then
            echo -e "$name is not exist"
            exit 0
        else
            userdel -r $name
            sed -i "/^$name$/d" /yanglt/Passwd.txt #进一步了解精确匹配,和变量匹配
            echo -e "$name delete successful"
        fi
        ;;
    3)
        read -p "please input need query name:" name
        empty_check
        grep -w $name /etc/passwd >/dev/null  #-w 精确匹配
        if [ $? -eq 0 ];then
            grep -w "$name" /etc/passwd
            grep -w "$name" /yanglt/Passwd.txt 
        else
            echo -e "$name is not exist"
            continue
            fi
        ;;
   *)
        exit 1
        ;;
esac
wait
done
[root@localhost ~]# 

 

posted @ 2018-08-03 14:49  旅行者-Ylt  阅读(269)  评论(0编辑  收藏  举报