码迷,mamicode.com
首页 > Web开发 > 详细

shell之批量新增用户脚本(http-basic-auth)

时间:2019-07-26 22:50:00      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:color   test   系统   passwd   用户脚本   code   int   open   ssl   

user.txt(用户名记录文件)

test001@163.com
test002@163.com

user.sh(shell脚本):

for line in `cat user.txt`
do
   echo $line "u"$line
   printf "$line:$(openssl passwd -crypt $line)\n" >> conf.d/passwd

done

执行完毕后,就可以在passwd看到对应的记录。

应用场景:
比如我开发某个系统,希望有一个双重验证,第一次访问比如有一个HTTP Basic Auth认证(认证一次,浏览器有缓存,就无需再重新验证),第二次如果你想使用系统的服务的话,还需要登录。

shell之批量新增用户脚本(http-basic-auth)

标签:color   test   系统   passwd   用户脚本   code   int   open   ssl   

原文地址:https://www.cnblogs.com/youcong/p/11253248.html

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