Help for this page

Select Code to Download


  1. or download this
    sort -n -r -k 3 file -o outfile
    
  2. or download this
    my @args = qw/ sort -n -r -k 3 file -o outfile /;
    system( @args ) == 0
      or die "something went wrong with: @args: $?\n";