Help for this page

Select Code to Download


  1. or download this
    sub trim {
       return map { s/\.mp3\z/\n/; $_ } sort @_;
    }
    
  2. or download this
    sub trim {
       return map { s/\.mp3\z//; $_ } sort @_;
    ...
    
    # and decorate it in the 'client'
    print DB map {"$_\n"} trim(@files);