mirror of
https://github.com/softwarejanitor/DOS33.git
synced 2024-12-21 15:29:26 +00:00
32 lines
452 B
Perl
32 lines
452 B
Perl
#!/usr/bin/perl -w
|
|
|
|
#
|
|
# dos33lock.pl:
|
|
#
|
|
# Utility to lock a file on an Apple II DOS 3.3 disk image.
|
|
#
|
|
# 20190116 LSH
|
|
#
|
|
|
|
use strict;
|
|
|
|
use DOS33;
|
|
|
|
my $debug = 0;
|
|
|
|
while (defined $ARGV[0] && $ARGV[0] =~ /^-/) {
|
|
# Debug
|
|
if ($ARGV[0] eq '-d') {
|
|
$debug = 1;
|
|
shift;
|
|
}
|
|
}
|
|
|
|
my $dskfile = shift or die "Must supply .dsk filename\n";
|
|
my $filename = shift or die "Must supply filename (on disk image)\n";
|
|
|
|
lock_file($dskfile, $filename, $debug);
|
|
|
|
1;
|
|
|