批量添加20个用户到class01组,用户名以std开头,以数字结尾,格式:std01---std20
方法1
#!/bin/sh groupadd class01 a=std for ((i=1;i<=20;i++)) do if [ $i -lt 10 ];then username="$a"0"$i" else username=$a$i fi useradd -G class01 -M $username done
方法2:
#!/bin/bash groupadd class01 for i in {1..20} do if [ $i -lt 10 ];then useradd "std0$i" -g class01 else useradd "std$i" -g class01 fi done
方法3: 此方法最简单高效,善用seq,会有意想不到效果
for i in `seq -w 20`;do useradd -G class01 sdt$i;done
seq的参数:
-f, --format=FORMAT use printf style floating-point FORMAT (default: %g)
-s, --separator=STRING use STRING to separate numbers (default: /n)
-w, --equal-width equalize width by padding with leading zeroes
-f 选项 指定格式
seq -f"%3g" 1 10
% 后面指定数字的位数 默认是"%g",
"%3g"那么数字位数不足部分是空格
# seq -f"%03g" 1 11
001
002
003
004
005
006
007
008
009
010
011
% 前面指定字符串,sed -f"%03g" 1 11 这样的话数字位数不足部分是0
# seq -f "test%03g" 8 12
test008
test009
test010
test011
test012
-w 指定输出数字同宽 不能和-f一起用
# seq -w 1 10
输出是同宽的
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。