home *** CD-ROM | disk | FTP | other *** search
/ ftp.cse.unsw.edu.au / 2014.06.ftp.cse.unsw.edu.au.tar / ftp.cse.unsw.edu.au / pub / doc / languages / perl / nutshell / ch1 / shuffle < prev    next >
Encoding:
Text File  |  1992-10-18  |  230 b   |  7 lines

  1. #!/usr/bin/perl
  2. srand;                      # Randomize the rand function.
  3. @lines = <>;                # Read in all the lines.
  4. while (@lines) {            # While more than 0 elements.
  5.     print splice(@lines, rand @lines, 1);
  6. }
  7.