练习:写一个脚本,完成以下任务

Posted 疯狂110

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习:写一个脚本,完成以下任务相关的知识,希望对你有一定的参考价值。

练习:写一个脚本,完成以下任务

1.添加5个用户,user1,users,。。。user5

2.每个用户的密码和用户名相同,并且要求,添加密码完成后不显示passwd命令的执行结果信息:

3.每个用户添加完成后,都要显示用户某某已经成功添加:

 

useradd user1

echo “user1" | passwd --stdin user1 $> /dev/null

echo  \'"Add user1 successfuly"

 

 

或者

for i in `seq 1 5`;do useradd user$i | passwd --stdin user$i &> /dev/null;echo "Add user$i successfully ";done

注意:删除用userdel user1会出现

要使用[root@localhost home]# for i in `seq 1 5`;do userdel -rf user$i;done

 

以上是关于练习:写一个脚本,完成以下任务的主要内容,如果未能解决你的问题,请参考以下文章

Linux基础7-2 Bash脚本编程练习1

09 shell脚本程序练习

bash脚本编程之三 条件判断及算术运算

linux命令练习:脚本实现配置yum源

Linux基础7-4 Bash脚本编程练习2

Linux基础7-4 Bash脚本编程练习2