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

📄 mkcdisk

📁 The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a s
💻
字号:
#! /usr/bin/perl# Build a binary image containing a pseudo fat filesystem with the listed files# $Revision: 1.1 $use FileHandle; if ( scalar(@ARGV) < 2 ) {    print STDERR "usage: mkuprog <diskImage> <filenames>\n";    exit 1;}$filename = shift @ARGV;$filecount = scalar ( @ARGV );$fh = new FileHandle(">$filename");writewhile (scalar(@ARGV)) {    $filename = shift @ARGV;    print  "got file ", $filename, "\n";}

⌨️ 快捷键说明

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