I have a bunch of files in a folder:
spreadsheet700.xls spreadsheet800.xls spreadsheet850.xls spreadsheet1005.xls spreadsheet2400.xls
how can I use file globbing to select files that numbers end in 700 or higher, but less than 1000 and put them into a new folder?
I've tried:
cp spreadsheet*.xls but the wildcard selects all. Thanks in adance.