I am looping through files in a folder
However, I would like to start with the one that comes alphabetically last. Is there a way to resort the local or loop backwards over the elements?
Code:
cd "$datain" local filelist: dir . files "*.txt" foreach file in `filelist' { .... }
Comment