Merge branch 'master' of git://github.com/r0ket/r0ket

This commit is contained in:
Stefan `Sec` Zehl 2012-01-02 20:47:04 +01:00
commit 6fcd448040
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
#!/usr/bin/perl
use strict;
my($src,$dst,@files)=@ARGV;
my %allfiles;
my $dh;
opendir($dh, $src) || die "source dir missing";
%allfiles=map {$_ => 1} grep {/^[^.]/} readdir($dh);
close $dh;
my @dwim;
for (@files){
if(!$allfiles{$_}){
warn "$_ not found in $src\n";
}else{
push @dwim,$_;
};
};
for (sort keys %allfiles){
push @dwim,$_;
};
system("cp",(map {$src."/".$_} @dwim),$dst);