12345678
#!/usr/bin/perl -wuse strict;my @array = ("1 a 10 100", "2 b 20 200", "3 c 30 300", "4 d 40 400");print join("\n", reverse(@array) );
12345
stefan@workaholic:~/programmierung/perl/community$ perl sort.pl4 d 40 4003 c 30 3002 b 20 2001 a 10 100