Perl批量执行Linux安装程序和脚本

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#!/usr/bin/perl
#use Cwd;
sub ExecuteAll(){
	local($dir) = @_;
	opendir(DIR,"$dir"|| die "can't open $dir");
	local @files =readdir(DIR);
	closedir(DIR);
	for $file (@files){
		next if($file=~m/\.$/ || $file =~m/\.\.$/);
		if ($file =~/\.(sh)$/i){
			system "xterm -e bash \"$dir\/$file\"";
		}
		elsif($file =~/\.(bin|run|bundle)$/i){
			system "xterm -e \"$dir\/$file\"";
		}
		elsif($file =~/\.(pl)$/i && $file != $0){
			system "xterm -e perl \"$dir\/$file\"";
		}
		elsif($file =~/\.(class)$/i){
			$file =~ s/(.*)\.(.*)/$1/;
			system "xterm -e java \"$dir\/$file\"";
		}
		elsif($file =~/\.(rpm)$/i){
			system "xterm -e rpm -ivh \"$dir\/$file\"";
		}
		elsif($file =~/\.(rb)$/i){
			system "xterm -e ruby \"$dir\/$file\"";
		}
		elsif($file =~/\.(py)$/i){
			system "xterm -e python \"$dir\/$file\"";
		}
		elsif($file =~/\.(jar)$/i){
			system "xterm -e java -jar \"$dir\/$file\"";
		}
		elsif(-d "$dir/$file"){
			ExecuteAll("$dir/$file" );
		}
	}
}
&ExecuteAll(getcwd);