概述
初学perl,汇总了一下,在工作中使用perl写测试脚本常用到的一些代码块信息。
相关代码案例
文件操作
查找指定目录下文件夹
use File::Find;
my @files;
sub want
{
#push @files,$
2014-06-13