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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:46:43+00:00 2026-05-23T14:46:43+00:00

Say the following Bash script: #!/bin/bash export TEXTDOMAINDIR=./locale export TEXTDOMAIN=test-gettext-read . gettext.sh echo -n

  • 0

Say the following Bash script:

#!/bin/bash

export TEXTDOMAINDIR=./locale
export TEXTDOMAIN=test-gettext-read
. gettext.sh

echo -n $(gettext "Insert a word: ")
read word

GNU gettext is used to make the string translatable and read is used to get user input. However, even if there’s a trailing space in the gettext message, there’s no space in the terminal when I run the script. Example (cursor is |):

$ bash test-gettext-read.sh
Insert a word:|

As a workaround, I remove the trailing space in the gettext string and I add a space outside:

echo -n $(gettext "Insert a word:")" "

Then it works:

$ bash test-gettext-read.sh
Insert a word: |

My question: is there a better workaround?

Thanks a lot.

  • 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-05-23T14:46:43+00:00Added an answer on May 23, 2026 at 2:46 pm

    Dont use echo -n.

    Simply do this:

    gettext "Insert a word: "
    read word
    

    Or you could wrap your expression whit quotes and then pass it to echo:

    echo -ne "$(gettext 'Insert\ta\tword: ')"
    

    Using quotes will ensure that the result passed to echo will be interpreted as one parameter "Insert a word: " insteand of 3: 'Insert' 'a' 'word:'.

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

Sidebar

Related Questions

Let’s say I have the following Bash script: while read SCRIPT_SOURCE_LINE; do echo $SCRIPT_SOURCE_LINE
Say I have the following Bash script stored in the file foo.sh : #!/bin/bash
Say I have the following two Bash scripts: Version #1: #!/bin/bash function bar {
Consider the following script: #!/bin/bash function long_running { for i in $(seq 1 10);
when i run fabric-0.9.1 in cygwin, it say following error: $ fab test.py Traceback
I'm attempting to write a bash script to parse out the following log file
Let's say I execute the following command in either BASH or Kornshell: $ foo
I need to loop through all the matches in say the following string: <a
Let's say we have following this: <p class=first>This is paragraph 1.</p> <p class=second>This is
I had the following idea: Say we have a webapp written using django which

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.