Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9150255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:35:18+00:00 2026-06-17T11:35:18+00:00

How do I get a range-list parameter like 1-6,8,15-20,23,25-28,30 to be parsed/expanded (to 1

  • 0

How do I get a range-list parameter like “1-6,8,15-20,23,25-28,30” to be parsed/expanded (to “1 2 3 4 5 6 8 15 16 17 18 19 20 23 25 26 27 28 30”) with bash? If bash does not work, some other generally available Linux shell coud be considered.

Use case: I have a script that needs to do something with given IDs, and would be (more than) nice to be able to handle “all kinds of” ID lists/ranges in one go. Now my script takes only a single ID range parameter A-B, so if my ID list is not a single contunuous range I need to run the script several times with different range parameters (e.g. “A-B,X-Y” becomes two runs, first “A-B” and then “X-Y”).

Short spec for the list parameter:
– a list is one range, or several ranges separated by a comma (other separators also possible)
– a range is A-B (A smaller than B), or a single number X (special case A=B)
– this is numerical/integer ranges/lists, so the possible characters in list are 0-9, “-” and “,”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T11:35:18+00:00Added an answer on June 17, 2026 at 11:35 am

    Here’s a bash function that uses parameter expansion, the read command, and the seq command to parse and expand a string in the format you gave.

    parse_range () {
        for range in ${1//,/ }; do
            IFS=- read a b <<< "$range"
            b=${b:-$a}
            seq $a $b
        done
    }
    
    for i in $(parse_range 1-6,8,15-20,23,25-28,30); do
        echo $i
    done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get variables like these: ocd[2].likelihood.range[1][0]=[-5219, -5191, 11.7]; ocd[2].likelihood.range[1][1]=[-5180, -5057, 56.5]; from an other
How to get range of data types in c sharp .net ? For example
I need to get a range of pages using AJAX and put them into
I'm trying to get the week range using Sunday as the start date, and
Possible Duplicate: In C, how do I get a specific range of numbers from
I am trying to get the font size of selected range in a html
I want to get models whom date is within a date range. So I
I need to get the size of files. These files range in size from
I am using the Date Range Picker (http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/) plugin and need to get the
I am using gmp's mpf_t to try and get very high precision. My range

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.