Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
    my @confs = split /, /,$confs;
    my @sortedconfs = sort {$a cmp $b} @confs;
    print "@sortedconfs\n";