#!/usr/bin/perl ######################################################################### # continuously read from <>, store in an array, sort the array ######################################################################### while(<>) { push(@array,$_); } print sort (@array);