mirror of
https://github.com/softwarejanitor/DOS33.git
synced 2024-12-21 00:29:33 +00:00
22 lines
254 B
Perl
22 lines
254 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
use DOS33;
|
|
|
|
my $debug = 0;
|
|
|
|
while (defined $ARGV[0] && $ARGV[0] =~ /^-/) {
|
|
if ($ARGV[0] eq '-d') {
|
|
$debug = 1;
|
|
shift;
|
|
}
|
|
}
|
|
|
|
my $dskfile = shift or die "Must supply filename\n";
|
|
|
|
freemap($dskfile, $debug);
|
|
|
|
1;
|
|
|