shell编程基础练习
1、使用for循环在/tmp目录下生成10个文件
要求:
(1)每个文件要以.html结尾的
(2)每个文件名的长度必须是固定字符串,且长度为10个字符
(3)10个字符必须是小写的26个字母,且每个字母必须是随机生成的
解题:
[root@oldboy ~]# vim randc.sh #!/bin/bash declare -a char=("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") declare -i num=10 function generator(){ local n=10 local string local ele for ((i=0;i<n;i++));do ele=${char[$[$RANDOM%26]]} string=$(echo "$ele$string") done echo $string } function main(){ local n=10 for((i=0;i<n;i++));do str=$(generator) if [ $? -eq 0 ];then touch "${str}.html" fi done } mainView Code
未完待续........
注:这些题是在网上查找,经略微改编发布,如有侵犯,立即删除