mirror of
https://github.com/softwarejanitor/DOS33.git
synced 2024-11-16 10:04:26 +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";
|
||
|
|
||
|
catalog($dskfile, $debug);
|
||
|
|
||
|
1;
|
||
|
|