for添加用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for添加用户相关的知识,希望对你有一定的参考价值。
添加10个用户user1到user10,密码同用户名;但要求只有用户不存在的情况下才能添加;
接受一个参数:
add: 添加用户user1..user10
del: 删除用户user1..user10
其它:退出
代码 #!/bin/bash # A=$1 if [ $A == add ];then for I in {1..10};do USER=user$I if ! id $USER &> /dev/null ;then useradd user$I &> /dev/null echo "user$I" | passwd user$I --stdin &>/dev/null echo "Add user$I OK" else echo "user$I ex" fi done elif [ $A == del ];then for I in {1..10};do USER=user$I if id $USER &>/dev/null ;then userdel user$I \rm -r /home/user$I echo "delete user$I OK" else echo "user$I is not ex" fi done else echo "Usage: ./foruseradd.sh "add" "de"" fi
以上是关于for添加用户的主要内容,如果未能解决你的问题,请参考以下文章
SnippetsLab for Mac 1.9 中文共享版 – 强大的代码收藏管理工具
java.util.MissingResourceException: Can't find bundle for base name init, locale zh_CN问题的处理(代码片段
Choose unique values for the 'webAppRootKey' context-param in your web.xml files! 错误的解决(代码片段