#!/bin/bash#本脚本执行,需要提前准备一个 user.txt 文件,该文件中包含有若干用户名信息for i in `cat user.txt`do useradd $i echo "123456" | passwd ‐‐stdin $idone