2020年8月26日

100个Shell脚本——【脚本7】批量建立用户

摘要: 【脚本7】批量建立用户 编写shell脚本,批量建立用户user_00, user_01, ... user_100并且所有用户同属于users组。 一、脚本 #!/bin/bash group=`cat /etc/group |grep -o users` if [$group=="users"] 阅读全文

posted @ 2020-08-26 00:37 渴望飞翔的xian鱼 阅读(2270) 评论(0) 推荐(0) 编辑

导航