您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

dskpad.pl 318B

123456789101112
  1. #!/usr/bin/perl -w
  2. use strict;
  3. use warnings;
  4. use constant FLOPPYSIZE => 1440 * 1024;
  5. while ( my $filename = shift ) {
  6. die "$filename is not a file\n" unless -f $filename;
  7. die "$filename is too large\n" unless ( -s $filename <= FLOPPYSIZE );
  8. truncate $filename, FLOPPYSIZE or die "Could not truncate: $!\n";
  9. }