shell腳本案例(一)批量創建用戶

案例需求 用shell腳本批量建立Linux用戶 實現要求:創建用戶student1到student50,指定組爲student組!而且每個用戶需要設定一個不同的密碼! 實現腳本 #!/bin/bash grep 'student' /etc/group >/dev/null 2>/dev/null [ $? -eq 0 ] || groupadd student >/dev/null 2>/de
相關文章
相關標籤/搜索