This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f -print0 | xargs -0 md5sum > md5list.txt | |
perl -ne '/^(\S+)\s+(.+)/ and push @{$h{$1}},$2}{@$v>1&&print join"\n\t",$k,@$v,"\n"while($k,$v)=each%h' md5list.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
TargetNumber=${1:-5712925402340856} | |
{ | |
echo "##### Target Number = $TargetNumber" | |
echo | |
echo -n "##### primeFactor.pl : perl ";perl -E'say $^V' | |
time ./primeFactor.pl $TargetNumber | |
echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use 5.010; | |
my @PNS = ( 3, 4, 5, 6 ); | |
my $lambda = 0.1; | |
for my $PN ( @PNS ){ |
NewerOlder