#!/usr/bin/perl open(INFO,"$ARGV[0]"); @array=; close (INFO); @sortedarray=sort(@array); foreach $line(@sortedarray){ print "$line"; }