Home > front end >  In bash, replace each character of a string with a fixed character ("blank out" a string)
In bash, replace each character of a string with a fixed character ("blank out" a string)

Time:05-14

MWE:

caption()
{
    echo "$@"
    echo "$@" | sed 's/./-/g'  # -> SC2001
}

caption "$@"

I'd like to use parameter expansion in order to get rid of the shellcheck error. The best idea I had was to use echo "${@//?/-}", but this does not replace spaces.

Any ideas?

CodePudding user response:

You can use $* to save it in a local variable:

caption() {
   local s="$*"
   printf '%s\n' "$s" "${s//?/-}"
}

Test:

caption 'SC 2001' foo bar

SC 2001 foo bar
---------------
  • Related