Files

10 lines
171 B
Perl
Raw Permalink Normal View History

2019-02-16 00:16:52 +01:00
#!/usr/bin/perl
use strict;
foreach (@ARGV) {
my $old = $_;
my $new = $old; $new =~ s/des/des\/hcrypto/g;
my $dir = $old;
print "$new: heimdal/lib/des/hcrypto\n";
}