Shuffle a file? : file write « File « Perl
- Perl
- File
- file write
Shuffle a file?
#!/usr/local/bin/perl -w
# Randomize input lines
srand; # make the rand function random
while(<>){
push @lines, $_;
}
while(@lines) {
print splice(@lines, rand @lines, 1);
}
Related examples in the same category