in reply to thanx a lot guys
in thread sorting a directory

Oh well if you want to delete the 100 oldest files in a directory and you are using a unix-like system them the following might work for you.
ls -1rt /home/frink/code/perl/z/ | head -100 | xargs rm