阿铭每日一题 day 4 20180114

Posted Ivan_yyq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿铭每日一题 day 4 20180114相关的知识,希望对你有一定的参考价值。

 

 

 

 

day4=参考答案=~ps.不是唯一答案哦

 1 #!/bin/bash
 2 for i in `seq -w 00 09`;do
 3   useradd user_$i
 4 
 5 #使用mkpasswd密码工具
 6   p=`mkpasswd -s 0 -l 10`
 7 
 8 #将用户和密码输出到指定文件里
 9   echo "user_$i $p" >> /tmp/user0_9.pass
10 
11 #批量设置用户密码
12   echo $p |passwd --stdin user_$i
13 done

 

以上是关于阿铭每日一题 day 4 20180114的主要内容,如果未能解决你的问题,请参考以下文章

阿铭每日一题 day 9 20180119

阿铭每日一题 day 1 20180111

阿铭每日一题 day 7 20180117

阿铭每日一题 day 3 20180113

阿铭每日一题 day 8 20180118

阿铭每日一题 day 5 20180115