first commit

This commit is contained in:
2025-06-03 23:03:08 +02:00
commit d40894b155
49 changed files with 49341 additions and 0 deletions

28
test.pl Normal file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/perl -w
use strict;
use warnings;
my $z = '123478234P234';
if ( $z =~ /^\d{8}/) {
print ("test\n");
}
my $a = '3ed1ac';
my $b = '3ed1bb';
my $a1 = sprintf("%d", hex($a));
my $b1 = sprintf("%d", hex($b));
print "$a1\n";
print "$b1\n";
for my $i ( $a1..$b1 ) {
print sprintf("%06x",$i),"\n";
}
# for(my $i = 1; $i < 0x00FFFF; $i++) {
# print sprintf("%06x",$i),"\n";
# }