码迷,mamicode.com
首页 > 系统相关 > 详细

linux 循环批量创建用户

时间:2018-03-04 14:38:50      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:linux 运维与开发

#!/bin/bash
mkfifo fifiofile
exec 6<> fifofile
echo >&6
echo >&6
echo >&6
echo >&6
echo >&6
for i in {1..60}
do
read -u 6
{
user=user$i
useradd user$i &> /dev/null
if [ $? -eq 0 ]; then
echo "user$i is create"
else
echo "user$i已存在"
fi
echo >&6

}&
done
wait
echo 完成

linux 循环批量创建用户

标签:linux 运维与开发

原文地址:http://blog.51cto.com/13578799/2082632

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