#!/usr/local/bin/perl

@filelist = <*>;
foreach $file (sort (@filelist)) {
        print ("$file\n");
}
