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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:09:28+00:00 2026-05-16T08:09:28+00:00

Could you please tell me what the equivalent BASH code for the following C++

  • 0

Could you please tell me what the equivalent BASH code for the following C++ snippet would be:

std::cout << std::setfill('x') << std::setw(7) << 250;

The output is:

xxxx250

Thanks for the help!

  • 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-16T08:09:29+00:00Added an answer on May 16, 2026 at 8:09 am

    If you’re on Linux, it has a printf program for just this purpose. Other UNIX variants may also have it.

    Padding a numeric with x is not really on of its use cases but you could get the same result with:

    pax> printf "%7d\n" 250 | tr ' ' 'x'
    xxxx250
    

    That outputs the 250 with space padding, then uses the tr translate utility to turn those spaces into x characters.

    If you’re looking for a bash-only solution, you can start with:

    pax> n=250 ; echo ${n}
    250
    
    pax> n=xxxxxxx${n} ; echo ${n}
    xxxxxxx250
    
    pax> n=${n: -7} ; echo ${n}
    xxxx250
    

    If you want a generalised solution, you can use this function fmt, unit test code is included:

    #!/bin/bash
    #
    # fmt <string> <direction> <fillchar> <size>
    # Formats a string by padding it to a specific size.
    # <string> is the string you want formatted.
    # <direction> is where you want the padding (l/L is left,
    #    r/R and everything else is right).
    # <fillchar> is the character or string to fill with.
    # <size> is the desired size.
    #
    fmt()
    {
        string="$1"
        direction=$2
        fillchar="$3"
        size=$4
        if [[ "${direction}" == "l" || "${direction}" == "L" ]] ; then
            while [[ ${#string} -lt ${size} ]] ; do
                string="${fillchar}${string}"
            done
            string="${string: -${size}}"
        else
            while [[ ${#string} -lt ${size} ]] ; do
                string="${string}${fillchar}"
            done
            string="${string:0:${size}}"
        fi
        echo "${string}"
    }
    

     

    # Unit test code.
    
    echo "[$(fmt 'Hello there' r ' ' 20)]"
    echo "[$(fmt 'Hello there' r ' ' 5)]"
    echo "[$(fmt 'Hello there' l ' ' 20)]"
    echo "[$(fmt 'Hello there' l ' ' 5)]"
    echo "[$(fmt 'Hello there' r '_' 20)]"
    echo "[$(fmt 'Hello there' r ' .' 20)]"
    echo "[$(fmt 250 l 'x' 7)]"
    

    This outputs:

    [Hello there         ]
    [Hello]
    [         Hello there]
    [there]
    [Hello there_________]
    [Hello there . . . . ]
    [xxxx250]
    

    and you’re not limited to just printing them, you can also save the variables for later with a line such as:

    formattedString="$(fmt 'Hello there' r ' ' 20)"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

could please someone tell me why 'disable-output-escaping' attribute takes no effect in the following
could someone please tell me why the dynamic_cast in the following code (five lines
Could anyone please tell me why the following line about filter init method invocation
Could anyone please tell me why the following casting is resulting in compile time
Could someone please tell me whats wrong with this code because I cannot find
Could you please show me the C# Equivalent of this VB.NET code: Public Partial
could anyone please tell me the meaning of the word mapping in the following
Could anyone please tell me what is the meaning of the following line in
Could anyone please tell me the meaning of API in following paragraph, that's actually
Could you please tell me if there is any equivalent of Access' DISTINCTROW for

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.