summaryrefslogtreecommitdiffstats
path: root/src/util/dskpad.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/dskpad.pl')
-rwxr-xr-xsrc/util/dskpad.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/dskpad.pl b/src/util/dskpad.pl
deleted file mode 100755
index 3ae325eb..00000000
--- a/src/util/dskpad.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/perl -w
-
-use strict;
-use warnings;
-
-use constant FLOPPYSIZE => 1440 * 1024;
-
-while ( my $filename = shift ) {
- die "$filename is not a file\n" unless -f $filename;
- die "$filename is too large\n" unless ( -s $filename <= FLOPPYSIZE );
- truncate $filename, FLOPPYSIZE or die "Could not truncate: $!\n";
-}