📄 shuffle.pl
字号:
#!/usr/bin/perl# Takes a file as standard input, and emits a random order # for the file. Argument says how many lines to actually emit.$howmany=shift;if($howmany < 1) { $howmany=1;}@lines=();$count=1;while(<>) { $lines[$count++]=$_;}# init random seed.srand(time|$$);while($howmany-- > 0) { $which=int(rand($count))+1; print $lines[$which];}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -