DOS33-perl/profree.pl
2019-01-17 07:50:09 -06:00

30 lines
360 B
Perl

#!/usr/bin/perl -w
#
# profree.pl:
#
# Utility to get a free sector map of an Apple II ProDOS volume.
#
# 20190116 LSH
#
use strict;
use ProDOS;
my $debug = 0;
while (defined $ARGV[0] && $ARGV[0] =~ /^-/) {
if ($ARGV[0] eq '-d') {
$debug = 1;
shift;
}
}
my $pofile = shift or die "Must supply .po filename\n";
freemap($pofile, $debug);
1;