in reply to Sorting The Date format Values without using any perl modules.
$ perl -le 'print for sort qw/2005-12-01 2005-11-02 2005-12-07/' 2005-11-02 2005-12-01 2005-12-07 [download]