码迷,mamicode.com
首页 > 其他好文 > 详细

bash中for循环添加10个用户和删除10个用户

时间:2016-12-26 14:23:31      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:linux

1. 循环添加10个用户:

#!/bin/bash
#

for i in {1..10}; do
    if id user$i &> /dev/null; then
        echo "user$i exists."
    else
        useradd user$i
        echo user$i | passwd --stdin user$i &> /dev/null
        echo "add user user$i finished."
    fi
done

2. 循环删除10个用户:

#!/bin/bash
#

for I in {1..10}; do
    if id user$I &> /dev/null; then
        userdel -r user$I
        echo "Delete user$I finished."
    else
        echo "user$I not exist."
done


本文出自 “www.aboboo520.com” 博客,请务必保留此出处http://aboboo520.blog.51cto.com/11330424/1886082

bash中for循环添加10个用户和删除10个用户

标签:linux

原文地址:http://aboboo520.blog.51cto.com/11330424/1886082

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