shell脚本之批量删除用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本之批量删除用户相关的知识,希望对你有一定的参考价值。
1 #!/bin/bash
2 for i in 1..10;do
3 if id user$i &> /dev/null;then
4 userdel -r user$i &>/dev/null
5 echo "user$i is deleted"
6 else
7 echo "This user isn‘t exist"
8 fi
9 done
以上是关于shell脚本之批量删除用户的主要内容,如果未能解决你的问题,请参考以下文章