批量創建10個用戶stu01-stu10

来源:http://www.cnblogs.com/hackerer/archive/2016/01/02/5085418.html
-Advertisement-
Play Games

1.批量創建10個用戶stu01-stu10,並且設置隨機8位密碼,要求不能用shell迴圈(例如:for,while等),只能用命令及管道實現。 1 ##方法1: 2 [root@server tmp]# echo stu{01..10}|tr " " "\n"|sed -r 's#(.*)#us...


1.批量創建10個用戶stu01-stu10,並且設置隨機8位密碼,要求不能用shell迴圈(例如:for,while等),只能用命令及管道實現。

 

 1 ##方法1:
 2 [root@server tmp]# echo stu{01..10}|tr " " "\n"|sed -r 's#(.*)#useradd \1 ; pass=$((RANDOM+10000000)); echo "$pass"|passwd --stdin \1; echo -e "\1 \t `echo "$pass"`">>/tmp/oldboy.log#g'|bash
 3 useradd: user 'stu01' already exists
 4 Changing password for user stu01.
 5 passwd: all authentication tokens updated successfully.
 6 useradd: user 'stu02' already exists
 7 Changing password for user stu02.
 8 passwd: all authentication tokens updated successfully.
 9 useradd: user 'stu03' already exists
10 Changing password for user stu03.
11 passwd: all authentication tokens updated successfully.
12 useradd: user 'stu04' already exists
13 Changing password for user stu04.
14 passwd: all authentication tokens updated successfully.
15 useradd: user 'stu05' already exists
16 Changing password for user stu05.
17 passwd: all authentication tokens updated successfully.
18 useradd: user 'stu06' already exists
19 Changing password for user stu06.
20 passwd: all authentication tokens updated successfully.
21 useradd: user 'stu07' already exists
22 Changing password for user stu07.
23 passwd: all authentication tokens updated successfully.
24 useradd: user 'stu08' already exists
25 Changing password for user stu08.
26 passwd: all authentication tokens updated successfully.
27 useradd: user 'stu09' already exists
28 Changing password for user stu09.
29 passwd: all authentication tokens updated successfully.
30 useradd: user 'stu10' already exists
31 Changing password for user stu10.
32 passwd: all authentication tokens updated successfully.
33 上述命令實際就是再拼N條下麵的命令的組合,舉一條命令stu01用戶的過程拆解如下:
34 useradd stu01 ; 
35 pass=$((RANDOM+10000000)); 
36 echo "$pass"|passwd --stdin stu01; 
37 echo -e "stu01        `echo "$pass"`">>/tmp/oldboy.log
38 特別說明:如果用shell迴圈結構會更簡單,之所以限制使用迴圈的目的是鍛煉學生的基礎命令運用
39 能力,學到現在還沒學到SHELL迴圈課程呢
40 ##方法2:
41 [root@server tmp]# echo stu{11..12}|xargs -n1 useradd ;echo stu{11..12}:`cat /dev/urandom|tr -dc 0-9|fold -w8|head -1`|xargs -n1|tee -a pass.txt|chpasswd
42 ##方法3:
43 [root@server tmp]# echo stu{21..30} | tr ' ' '\n' | sed -e 's/^/useradd /' -e 's/\(stu[0-9]\{2\}\)$/\1 \&\& echo "\1:`echo $[$RANDOM**3] | cut -c1-8`" | tee -a userInfo.txt | cut -d: -f2 | passwd --stdin \1/' | bash
44 Changing password for user stu21.
45 passwd: all authentication tokens updated successfully.
46 Changing password for user stu22.
47 passwd: all authentication tokens updated successfully.
48 Changing password for user stu23.
49 passwd: all authentication tokens updated successfully.
50 Changing password for user stu24.
51 passwd: all authentication tokens updated successfully.
52 Changing password for user stu25.
53 passwd: all authentication tokens updated successfully.
54 Changing password for user stu26.
55 passwd: all authentication tokens updated successfully.
56 Changing password for user stu27.
57 passwd: all authentication tokens updated successfully.
58 Changing password for user stu28.
59 passwd: all authentication tokens updated successfully.
60 Changing password for user stu29.
61 passwd: all authentication tokens updated successfully.
62 Changing password for user stu30.
63 passwd: all authentication tokens updated successfully.
64 功能: 創建10個用戶 分別是 stu21-stu30 其密碼是用隨機數變數RANDOM生成,均保存至 userInfo.txt中,格式: username:passwd   這個寫的不算好  如果有更好的一定要分享哦!  上面的隨機數 我之前是用日期生成的,是不對的,因為有可能會有重覆現象,所以我後來乾脆用RANDOM**3取其前8位,可確保唯一性
65 ##方法4:
66 [root@server tmp]# echo stu{01..10} |tr ' ' '\n'|sed -rn 's@^(.*)$@useradd \1 ; echo $RANDOM|md5sum|cut -c 1-8 >/data/\1;cat /data/\1|passwd --stdin \1@gp'|bash
67 useradd: user 'stu01' already exists
68 Changing password for user stu01.
69 passwd: all authentication tokens updated successfully.
70 useradd: user 'stu02' already exists
71 Changing password for user stu02.
72 passwd: all authentication tokens updated successfully.
73 useradd: user 'stu03' already exists
74 Changing password for user stu03.
75 passwd: all authentication tokens updated successfully.
76 useradd: user 'stu04' already exists
77 Changing password for user stu04.
78 passwd: all authentication tokens updated successfully.
79 useradd: user 'stu05' already exists
80 Changing password for user stu05.
81 passwd: all authentication tokens updated successfully.
82 useradd: user 'stu06' already exists
83 Changing password for user stu06.
84 passwd: all authentication tokens updated successfully.
85 useradd: user 'stu07' already exists
86 Changing password for user stu07.
87 passwd: all authentication tokens updated successfully.
88 useradd: user 'stu08' already exists
89 Changing password for user stu08.
90 passwd: all authentication tokens updated successfully.
91 useradd: user 'stu09' already exists
92 Changing password for user stu09.
93 passwd: all authentication tokens updated successfully.
94 useradd: user 'stu10' already exists
95 Changing password for user stu10.
96 passwd: all authentication tokens updated successfully.

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • deepin linux 簡單配置
  • Yunduan CUIgraphical user interfaces make easy tasks easy, while command line interfaces make difficult tasks possiblePart 1 學習Shell1. 什麼是 Shell?Shell...
  • 一臺N3150機器作為編譯伺服器,跑xubuntu。同時可以作為代碼管理伺服器,也可以作為一個htpc使用,播放高清影片等。由於N3150的功耗只有6W,無風扇,因此可以保證一個比較安靜的環境。閱讀數據手冊,分析代碼,串口終端等都跑在XP下,可以映射網路磁碟訪問編譯伺服器上的文件。同時XP上安裝了硬...
  • 一、簡介 pkg-config用來檢索系統中安裝庫文件的信息。典型的是用作庫的編譯和連接。 二、實例 http://blog.chinaunix.net/uid-20595934-id-1918368.html 三、常見問題 1)PKG_CONFIG_PATH和PKG_CONFIG的路徑設置問題 h...
  • seq
    Linux 中seq 命令的用法用於產生從某個數到另外一個數之間的所有整數用法:seq [選項]... 尾數 或:seq [選項]... 首數 尾數 或:seq [選項]... 首數 增量 尾數‐f 選項 指定格式% 後面指定數字的位數 預設是"%g","%3g"那麼數字位數不足部分是空格seq ‐...
  • 2015年各大技術公司八仙過海,各顯神通。微軟在其中尤為顯目。以下是2015年微軟公司推出的十大技術視頻。按照瀏覽量排序,排在第一位的視頻有55萬次之多。Windows 10, HoloLens, Visual Studio 2015成了2015年微軟的重頭戲。No.1: Visual Studio...
  • 任務調度的使用1:設置任務。 crontab -e2:分配任務-每隔第一時間去執行 date > /home/mydata1 希望,每天凌晨兩點執行date >> /home/mydata2 可以在crontab -e中加入0 2 * * * date >> /home/mydata2調度文件的規則...
  • 本文主要內容:1)管程(Monitor)介紹;2)管程實現;3)管程應用
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...