commit for archiving

This commit is contained in:
2025-08-27 09:03:01 +02:00
commit a163c80769
140 changed files with 49745 additions and 0 deletions

8
Perl/bin/decode-base64 Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/perl
use MIME::Base64 qw(decode_base64);
while (<>) {
print decode_base64($_);
}