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

📄 genstress

📁 this gives details of the network programming
💻
字号:
#!/usr/local/bin/perl# generate a stress test script# repeats the input script a bunch of times$n = $ARGV[0];$script = $ARGV[1];open(F,$script) || die $!;@sc = <F>;close(F);for ($i=0;$i<$n;$i++) {	printf("PRINT Repetition # $i\n");	print(join("",@sc));}

⌨️ 快捷键说明

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