⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zerofile

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻
字号:
#! /usr/bin/perl# This script is used for creating a file full of zeroes,# which we use to create the hard disk image used by bochs.use strict qw(refs vars);use FileHandle;use IO::Seekable;if ( scalar(@ARGV) != 2 ) {    print "Usage: zerofile <output file> <num sectors>\n";    exit 1;}my $outfile = shift @ARGV;my $numsecs = shift @ARGV;my $buf = chr(0) x 1;my $fh = new FileHandle(">$outfile");(defined $fh) || die "Couldn't open $outfile: $!\n";binmode $fh;if ( !sysseek( $fh, ($numsecs * 512) - 1, SEEK_SET ) ) {    die "Couldn't seek in $outfile: $!\n";}if ( !syswrite( $fh, $buf, 1 ) ) {    die "Couldn't write to $outfile: $!\n";}$fh->close();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -