in reply to Re: Sorting using the highest last column criteria
in thread Sorting using the highest last column criteria
#!/usr/bin/perl #use strict; use warnings; open FILE,"out07.txt"; my @fields = split / /, <FILE>; chomp @fields; my @lines = split (/(\n)/, "@fields"); for (@lines) { print @fields,"\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sorting using the highest last column criteria
by Bethany (Scribe) on Jul 27, 2014 at 20:20 UTC |