大量新增使用者的shell指令碼

來源:互聯網
上載者:User

題目要求:通過shell編程,實現大量新增使用者。

儲存為任意檔案名稱:給x許可權

不加任何參數,則為添加user1.user2.user3....user10,密碼=使用者名稱

加參數例:command -a test 20  命令 -a添加 test是使用者頭 20是添加數量(一次添加最多不得大於100個,下面代碼可以自己改)

command -d test 刪除系統中使用者名稱以test開頭的,後跟數位使用者名稱,不加test,則預設刪除user1.user2.user3...這類使用者...慎用...

#!/bin/bashU=${2:-user}Num=${3:-10}Res=`grep -o "^\<$U[0-9]\{1,\}\>" /etc/passwd|grep -o "[0-9]\{1,\}"|sort -n|tail -1`Res1=${Res:-0}Res2=$((Res1+Num))ALL=`cat /etc/passwd|wc -l`if [[ -z $1 || $1 == '-a' && ! -z $2 && $3 -le 100 ]];then        for((i=${Res1};i<=${Res2};i++))        do                if [[ $i -ne 0 ]];then                        useradd  ${U}$i &> /dev/null                        echo "${U}$i"|passwd --stdin ${U}$i &> /dev/null                fi         done                AALL=`cat /etc/passwd|wc -l`                echo "Add user number is $((AALL-ALL))"elif [[ ! -z $1 && "$1" = '-d' ]] ;then        for((i=${Res1};i>=1;i--))        do                Res3=`grep -o "^\<${U}${i}\>" /etc/passwd`                    if [[ -n $Res3 && "${U}$i" == "$Res3" ]];then                        userdel -r  ${U}$i &> /dev/null                fi        done                DALL=`cat /etc/passwd|wc -l`                echo "Del user number is $((ALL-DALL))"else        echo -e "\033[33;5merror!\033[0m Please input none or -a or -d"fi
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.