I have a few folder with split rar files. I want them to download the first and last file first before downloading the rest of the files. I set this in my ~/.lftp/rc
set mirror:order "*.sfv *.rar * */" and the ftp server is set to sort files by size. lftp lists the files in the order I want to download but when the mirror command is used, it downloads them in alphabetical order after the ones in mirror:order is complete. Here is an example of the order. files: test.r00 test.r01, test.r02, test.r03,test.test.r04,test.r05, test.rar download order: test.rar, test.r05, test.r00, test.r01, test.r02,test.r03,test.r04
