【perl】遍历当前目录下所有文件
摘要:
1 #!/usr/bin/perl 2 use strict; 3 use Getopt::Long; 4 5 my $dir_path; 6 my $file_output; 7 8 GetOptions( 9 'dir_path|dir=s'=>\$dir_path, 10 'file_outp 阅读全文
posted @ 2022-06-09 17:10 知北游。。 阅读(175) 评论(0) 推荐(0) 编辑