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 7885415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T05:03:50+00:00 2026-06-03T05:03:50+00:00

Possible Duplicate: Properly handling spaces and quotes in bash completion I would like to

  • 0

Possible Duplicate:
Properly handling spaces and quotes in bash completion

I would like to be use muti-word quoted strings for bash completion.

e.g. I like to be able to do this

$ command <tab> 
  "Long String 1"
  "Long String 2"

where “Long String 1” and “Long String 2” are the suggestions given when tab is pressed.

I tried using this where ~/strings contains a list of quoted strings

function _hista_comp(){
    local curw
    COMPREPLY=()
    curw=${COMP_WORDS[COMP_CWORD]}
    COMPREPLY=($(compgen -W '`cat ~/strings`' -- $curw))    
    return 0
}
complete -F _hista_comp hista

The above function splits the string on whitespace. Is there any way to make it return the whole quoted string?

e.g if ~/string had the following lines

  "Long String 1"
  "Long String 2"  

It would give 5 suggestions instead of 2.

  • 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-03T05:03:52+00:00Added an answer on June 3, 2026 at 5:03 am

    After trying various things I found that adding

        IFS=$'\x0a';
    

    to the start of the function (changes the input separator to new line) makes the function handle spaces correctly.

    So the function would be

    function _hista_comp(){  
        IFS=$'\x0a';
        local curw
        COMPREPLY=()
        curw=${COMP_WORDS[COMP_CWORD]}
        COMPREPLY=($(compgen -W '`cat ~/strings`' -- $curw))    
            uset IFS
        return 0
    }
    complete -F _hista_comp hista
    

    This would allow

    $ command <tab> 
      "Long String 1"
      "Long String 2"
    

    as I wanted.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Coldfusion adding extra quotes when constructing database queries in strings All, I
Possible Duplicate: Detecting an undefined object property in JavaScript Would it be like this?
Possible Duplicate: How to properly clean up Excel interop objects in C# I've read
Possible Duplicate: options for restoring appengine datastore data? I'd like to parse the files
Possible Duplicate: In MySQL queries, why use join instead of where? Joins are always
Possible Duplicate: When to Use Static Classes in C# I will write code in
Possible Duplicate: How to properly clean up Excel interop objects in C# I've this
Possible Duplicate: My regex is not working properly Suppose I have long text. From
Possible Duplicate: Python not sorting unicode properly. Strcoll doesn't help. I'm trying to sort
Possible Duplicate: Obfuscator which supports WPF properly I am looking for a free WPF

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.