1. 脚本主要内容如下: #!/bin/bash for((i=0;i<8;i++)) do str=`openssl rand -base64 16 | md5sum | cut -c1-16` echo " $i: $str" done2. 执行效果如下: