2017-2-10 bash基础脚本

Posted 你也是幽默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017-2-10 bash基础脚本相关的知识,希望对你有一定的参考价值。

练习:写一脚本,实现如下功能:
1、让用户通过键盘输入一个用户名,如果用户不存在就退出;
2、如果其UID等于其GID,就说它是个"good guy"
3、否则,就说它是个“bad guy”;

#!/bin/bash
read -t 10 -p please enter user name:  UserName
echo "your input the name is $UserName"
if id $UserName &> /dev/null ;then
    a=`id -u $UserName`
    b=`id -g $UserName`
    if [ $a -eq $b ]
    then
        echo "good guy"
    else
        echo " bad guy"
    fi
else
    echo " user not exesit"
    exit 6
fi

 

练习:写一个脚本,实现如下功能:
1、添加10个用户stu1-stu10;但要先判断用户是否存在;
2、如果存在,就用红色显示其已经存大在
3、否则,就添加此用户;并绿色显示;
4、最后显示一共添加了几个用户;

#!/bin/bash

count=0
for i in `seq 10 40` 
do
    if grep "^stu$i" /etc/passwd &> /dev/null
    then
        echo -e "the user \033[31m stu$i \033[0m is exsit"
    else
        useradd stu$i
        echo -e "the user \033[32m stu$i \033[0m added"
        let count+=1
    fi
done
    echo "total adduser $count"

 

以上是关于2017-2-10 bash基础脚本的主要内容,如果未能解决你的问题,请参考以下文章

linux学习19 shell脚本基础-bash脚本编程基础及配置文件

Linux基础之bash脚本编程进阶篇-选择执行语句(if,case)

bash脚本编程基础

Linux Bash-脚本基础

bash 脚本编程基础及配置文件

Linux基础之bash脚本进阶篇-函数