List file range with UNIX wildcards
Say for example I have the following files in my working directory: mjk0001.fits, mjk0002.fits, ... numerically increasing all the way to mjk9999.fits.
Is there a way to use UNIX wildcards to list or operate on a sequential group of them? For example, if I need to run a process on 0025 through 0050, what format would I use?
I have tried the following but have had no success:
ls *[25-50].fits
ls mjk00[25-50].fits
ls mjk[0025-0050]*
ls *[0025-0050]*
Thanks in advance everyone, MK
You can use brace expansion:
ls mjk00{25..50}.fits
Leading zeros can be included if necessary:
ls mjk0{000..149}.fits
Not directly, but you can use multiple glob patterns:
ls mjk002[56789].fits mjk00[34]?.fits
It's not exactly what you are looking for, but it's the closest thing that glob patterns offer, and it is certainly better than typing each fileystem. At least the number of patterns you will need per numerical range is bounded by the log of the numerical endpoints of the range.
You could use a regex with grep. I'm not a regex guru. The following returns the pattern with the numbers betweeen 25-50:
ls | sort -n | grep -E 'mjk00([2][5-9]|[3-4][0-9]|[5][0]).fits'
I don't know if it is possible and how eventually generalize this with grep.