List file range with UNIX wildcards

16,710

Solution 1

You can use brace expansion:

ls mjk00{25..50}.fits

Leading zeros can be included if necessary:

ls mjk0{000..149}.fits

Solution 2

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.

Solution 3

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.

Share:
16,710

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    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

  • Brent Bradburn
    Brent Bradburn about 7 years
    Using this syntax, you can also specify a step value: {25..50..2}.
  • Brent Bradburn
    Brent Bradburn over 6 years
    If you want to separate the results of brace expansion, you can use a for loop: for i in {025..050} ; do ... ; done