2016年9月6日

shell脚本,批量创建10个系统帐号并设置密码为随机8位字符串。

摘要: [root@localhost wyb]# cat user10.sh #!/bin/bash #批量创建10个系统帐号wangyb01-wangyb10并设置密码(密码为随机8位字符串)。 >user.list for user in `seq -w 10` do useradd wangyb$user password=`echo $RANDOM|md5sum|cut -... 阅读全文

posted @ 2016-09-06 23:46 王月波 阅读(1782) 评论(0) 推荐(0)

shell脚本,在指定目录下通过随机小写10个字母加固定字符串oldboy批量创建10个html文件。

摘要: [root@localhost wyb]# cat test10.sh #!/bin/bash #使用for循环在/test10目录下通过随机小写10个字母加固定字符串oldboy批量创建10个html文件 dir=/root/wyb/test10/ [ ! -d $dir ] && mkdir -p $dir for i in `seq 10` do touch $d... 阅读全文

posted @ 2016-09-06 22:59 王月波 阅读(4102) 评论(2) 推荐(0)

shell脚本,按字母出现频率降序排序。

摘要: [root@localhost oldboy]# cat file the squid project provides a number of resources toassist users design,implement and support squid installations. Please browsethe documentation and support section... 阅读全文

posted @ 2016-09-06 18:17 王月波 阅读(1843) 评论(0) 推荐(0)

shell脚本,按单词出现频率降序排序。

摘要: [root@localhost oldboy]# cat file the squid project provides a number of resources toassist users design,implement and support squid installations. Please browsethe documentation and support sections... 阅读全文

posted @ 2016-09-06 18:16 王月波 阅读(598) 评论(0) 推荐(0)

导航