91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

批量創建用戶及密碼

發布時間:2020-07-05 14:52:09 來源:網絡 閱讀:734 作者:baishuchao 欄目:開發技術

批量創建用戶并設置密碼不為相同

#!/bin/bash
for n in `seq -w 10`
do
  useradd xcn$n&&\
  echo "root$n"|passwd --stdin xcn$n
done


執行結果:
[root@XCN for]# sh test7.sh 
Changing password for user xcn01.
passwd: all authentication tokens updated successfully.
Changing password for user xcn02.
passwd: all authentication tokens updated successfully.
Changing password for user xcn03.
passwd: all authentication tokens updated successfully.
Changing password for user xcn04.
passwd: all authentication tokens updated successfully.
Changing password for user xcn05.
passwd: all authentication tokens updated successfully.
Changing password for user xcn06.
passwd: all authentication tokens updated successfully.
Changing password for user xcn07.
passwd: all authentication tokens updated successfully.
Changing password for user xcn08.
passwd: all authentication tokens updated successfully.
Changing password for user xcn09.
passwd: all authentication tokens updated successfully.
Changing password for user xcn10.
passwd: all authentication tokens updated successfully.

批量創建用戶并設置密碼為隨機

方法1:

#!/bin/bash
for n in `seq -w 10`
do
  pass=`echo "$RANDOM"|md5sum|cut -c 1-8`
  useradd xcn$n&&\
  echo "$pass" |passwd --stdin xcn$n
  echo -e "xcn$n\t $pass" >>/data/pass.log 
done

批量刪除用戶

#!/bin/bash
for n in `seq 10`
do
   userdel -r  xcn$n &&\
done



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

太湖县| 乌什县| 佛坪县| 青河县| 远安县| 金沙县| 莎车县| 雅安市| 安顺市| 宣恩县| 潼南县| 金沙县| 延川县| 乐平市| 阿拉善左旗| 东平县| 龙陵县| 临城县| 章丘市| 兴文县| 东乡| 敦化市| 桂林市| 新宾| 大同市| 峡江县| 厦门市| 龙井市| 都安| 杂多县| 呈贡县| 邛崃市| 四川省| 乐平市| 科技| 凤翔县| 铜鼓县| 东乌珠穆沁旗| 吉水县| 丹凤县| 铜陵市|