#!/bin/bash
Pha=(a b c d e f g h i j k l m n o p q r s t u v w x y z)
name=''
location=('beijing' 'shanghai' 'chengdu')
loc=''
#随机输出4个字符的用户名
function Name(){
name=''
for ((i=0;i<4;i++)) do
rd=$(($RANDOM%26));
name="${Pha[$rd]}""$name"
done
}
#随机输出shell数组定义好的地区
function Location(){
point=$(($RANDOM%3))
loc=${location[$point]}
}
#输出100条数据到test.txt中
for((j=0;j<100;j++)){
Name
Location
echo "$name"" ""$loc"" ""$j" 》/tmp/test.txt