From 7f9a034d5b2d107a2b5688f3c60bdc17fe5f4a9d Mon Sep 17 00:00:00 2001 From: Leeland Heins Date: Sat, 19 Jan 2019 14:00:04 -0600 Subject: [PATCH] Moved to ProDOS --- profree.pl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 profree.pl diff --git a/profree.pl b/profree.pl deleted file mode 100644 index f862799..0000000 --- a/profree.pl +++ /dev/null @@ -1,31 +0,0 @@ -#!/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; - } else { - die "Unknown command line argument $ARGV[0]\n"; - } -} - -my $pofile = shift or die "Must supply .po filename\n"; - -freemap($pofile, $debug); - -1; -