From 394dac043ccac1924ee3141e1a5ed49c343dfbdf Mon Sep 17 00:00:00 2001 From: Leeland Heins Date: Sat, 19 Jan 2019 13:59:49 -0600 Subject: [PATCH] Moved to ProDOS --- procat.pl | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 procat.pl diff --git a/procat.pl b/procat.pl deleted file mode 100644 index f5bb72c..0000000 --- a/procat.pl +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/perl -w - -# -# procat.pl: -# -# Utility to get a 'catalog' (directory listing) of an Apple II ProDOS volume. -# -# 20190115 LSH -# - -use strict; - -use ProDOS; - -my $debug = 0; - -my $blk = 0x0; - -while (defined $ARGV[0] && $ARGV[0] =~ /^-/) { - if ($ARGV[0] eq '-d') { - $debug = 1; - shift; - } elsif ($ARGV[0] eq '-b' && defined $ARGV[1] && $ARGV[1] =~ /^\d+$/) { - $blk = $ARGV[1]; - shift; - shift; - } else { - die "Unknown command line argument $ARGV[0]\n"; - } -} - -my $pofile = shift or die "Must supply .po filename\n"; - -cat($pofile, $debug); - -1; -