📄 genstress
字号:
#!/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 + -