rrm: Convert from MD5 to SHA256.
This commit is contained in:
parent
3c5accdf5e
commit
6be767cbec
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
CMD = blink bsearch G histogram upsidedown tracefile timestamp rand rrm goodpasswd gitnext puniq ramusage ramusage
|
CMD = blink bsearch G histogram upsidedown tracefile timestamp rand rclean rrm goodpasswd gitnext pdfman puniq ramusage ramusage
|
||||||
|
|
||||||
all: blink/blink.1 bsearch/bsearch.1 G/G.1 goodpasswd/goodpasswd.1 histogram/histogram.1 puniq/puniq.1 rand/rand.1 rrm/rrm.1 timestamp/timestamp.1 tracefile/tracefile.1 upsidedown/upsidedown.1 wssh/wssh.1
|
all: blink/blink.1 bsearch/bsearch.1 G/G.1 goodpasswd/goodpasswd.1 histogram/histogram.1 puniq/puniq.1 rand/rand.1 rrm/rrm.1 timestamp/timestamp.1 tracefile/tracefile.1 upsidedown/upsidedown.1 wssh/wssh.1
|
||||||
|
|
||||||
|
|
14
rrm/rclean
14
rrm/rclean
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/perl
|
#!/usr/bin/perl
|
||||||
|
|
||||||
use Digest::MD5::File qw(dir_md5_hex file_md5_hex url_md5_hex);
|
use Digest::MD5::File qw(dir_md5_hex file_md5_hex url_md5_hex);
|
||||||
|
use Digest::SHA;
|
||||||
|
|
||||||
my $dir = shift || ".";
|
my $dir = shift || ".";
|
||||||
|
|
||||||
|
@ -18,13 +19,13 @@ while(<IN>) {
|
||||||
}
|
}
|
||||||
close IN;
|
close IN;
|
||||||
|
|
||||||
# Read md5sum of removed files of a given size
|
# Read hash-value of removed files of a given size
|
||||||
my %rrm;
|
my %rrm;
|
||||||
my $rrmfile = find_rrm_file(".") || ".rrm";
|
my $rrmfile = find_rrm_file(".") || ".rrm";
|
||||||
open(RRM,"<",$rrmfile) || die;
|
open(RRM,"<",$rrmfile) || die;
|
||||||
while(<RRM>) {
|
while(<RRM>) {
|
||||||
my($size,$md5,$file) = split /\t/,$_;
|
my($size,$hashval,$file) = split /\t/,$_;
|
||||||
$rrm{0+$size}{$md5}++;
|
$rrm{0+$size}{$hashval}++;
|
||||||
}
|
}
|
||||||
close RRM;
|
close RRM;
|
||||||
|
|
||||||
|
@ -34,8 +35,11 @@ for my $size (keys %rrm) {
|
||||||
if(-e $file) {
|
if(-e $file) {
|
||||||
my $md5 = Digest::MD5->new;
|
my $md5 = Digest::MD5->new;
|
||||||
$md5->addpath($file);
|
$md5->addpath($file);
|
||||||
# Do they have the same md5sum?
|
my $sha = Digest::SHA->new(256);
|
||||||
if($rrm{$size}{$md5->hexdigest}) {
|
$sha->addfile($file);
|
||||||
|
# Do they have the same hash-value?
|
||||||
|
if($rrm{$size}{$md5->hexdigest} or
|
||||||
|
$rrm{$size}{"SHA256:".$sha->b64digest}) {
|
||||||
# remove this
|
# remove this
|
||||||
print "$file\n";
|
print "$file\n";
|
||||||
}
|
}
|
||||||
|
|
25
rrm/rrm
25
rrm/rrm
|
@ -31,44 +31,49 @@ Restore a backup containing I<IMG_2035.JPG>.
|
||||||
|
|
||||||
B<rclean>
|
B<rclean>
|
||||||
|
|
||||||
B<rclean> will find B<IMG_2035.JPG> as it has the same size and MD5sum
|
B<rclean> will find B<IMG_2035.JPG> as it has the same size and SHA256sum
|
||||||
as an already removed file.
|
as an already removed file.
|
||||||
|
|
||||||
|
|
||||||
=head1 FILES
|
=head1 FILES
|
||||||
|
|
||||||
The file B<.rrm> contains the database of size, md5sum, and names of
|
The file B<.rrm> contains the database of size, sha256sum, and names of
|
||||||
the files. It is created in current directory if it cannot be found in
|
the files. It is created in current directory if it cannot be found in
|
||||||
any of the (grand*)parent directories.
|
any of the (grand*)parent directories.
|
||||||
|
|
||||||
|
|
||||||
=head1 SEE ALSO
|
=head1 SEE ALSO
|
||||||
|
|
||||||
B<rclean>(1), B<rm>(1), B<md5sum>(1)
|
B<rclean>(1), B<rm>(1), B<sha256sum>(1)
|
||||||
|
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
|
||||||
use Digest::MD5::File qw(dir_md5_hex file_md5_hex url_md5_hex);
|
use Digest::SHA;
|
||||||
|
|
||||||
my %size;
|
my %size;
|
||||||
my %md5;
|
my %hashval;
|
||||||
|
my @remove;
|
||||||
for my $file (@ARGV) {
|
for my $file (@ARGV) {
|
||||||
if(-s $file > 0) {
|
if(-s $file > 0) {
|
||||||
$size{$file} = -s $file;
|
$size{$file} = -s $file;
|
||||||
my $md5 = Digest::MD5->new;
|
my $sha = Digest::SHA->new(256);
|
||||||
$md5->addpath($file);
|
$sha->addfile($file);
|
||||||
$md5{$file} = $md5->hexdigest;
|
$hashval{$file} = "SHA256:".$sha->b64digest;
|
||||||
|
push @remove, $file;
|
||||||
|
}
|
||||||
|
if(not -e $file) {
|
||||||
|
warn("File does not exist: $file");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$rrmfile = find_rrm_file(".") || ".rrm";
|
$rrmfile = find_rrm_file(".") || ".rrm";
|
||||||
|
|
||||||
open(RRM,">>",$rrmfile) || die("Cannot write to $rrmfile.");
|
open(RRM,">>",$rrmfile) || die("Cannot write to $rrmfile.");
|
||||||
print RRM map { $size{$_}."\t".$md5{$_}."\t".$_."\0\n" } @ARGV;
|
print RRM map { $size{$_}."\t".$hashval{$_}."\t".$_."\0\n" } @remove;
|
||||||
close RRM;
|
close RRM;
|
||||||
unlink @ARGV;
|
unlink @remove;
|
||||||
|
|
||||||
sub find_rrm_file {
|
sub find_rrm_file {
|
||||||
my $dir = shift;
|
my $dir = shift;
|
||||||
|
|
Loading…
Reference in a new issue