How do you use bash continuation lines?

I realize that you can do this:

echo "continuation \
lines"
>continuation lines

However, if you have indented code, it doesn't work out so well...

    echo "continuation \
    lines"
>continuation     lines

Thanks for the help.

link|improve this question

feedback

4 Answers

Here documents with the <<-HERE terminator work well for indented multi-line text strings.

cat <<-____HERE
    continuation
    lines
____HERE

If you need to preserve some, but not all, leading whitespace, you might use something llke

sed 's/^  //' <<____HERE
    This has four leading spaces.
    Two of them will be removed by sed.
____HERE
link|improve this answer
feedback

Use single quotes and drop the continuation backslash:

$ function f {
> echo -$1-
> }

$ f 'foo
     bar
     baz'
-foo bar baz-

EDIT That solution implicitly requires the unquoted $1 in f. Here's one that uses a helper function:

$ function f {
> echo "-$1-"
> }

$ function w {
> echo $*
> }

$ f "`w '
  foo
  bar
  baz'`"
-foo bar baz-

$ echo "`w '
>      foo
>      bar
>      baz'`"
foo bar baz

However this is getting into academic line noise territory, and at this point the HEREDOC solution may be clearer. If you are looking for a pragmatic solution to an actual problem, I'd consider making a wrapper script that passes "$*":

$ function one-param {
> local prog=$1
> shift 1
> $prog "$*"
> }

$ one-param f foo \
>             bar \
>             baz
-foo bar baz-
link|improve this answer
This doesn't work because it still has spaces inbetween if you were to just use echo directly. – Whef Sep 6 '11 at 19:52
feedback

This is what you may want

$       echo "continuation"\
>       "lines"
continuation lines

If this creates two arguments to echo and you only want one, then let's look at string concatenation. In bash, placing two strings next to each other concatenate:

$ echo "continuation""lines"
continuationlines

So a continuation line without an indent is one way to break up a string:

$ echo "continuation"\
> "lines"
continuationlines

But when an indent is used:

$       echo "continuation"\
>       "lines"
continuation lines

You get two arguments because this is no longer a concatenation.

If you would like a single string which crosses lines, while indenting but not getting all those spaces, one approach you can try is to ditch the continuation line and use variables:

$ a="continuation"
$ b="lines"
$ echo $a$b
continuationlines

This will allow you to have cleanly indented code at the expense of additional variables. If you make the variables local it should not be too bad.

link|improve this answer
Thanks for your help, but while this does remove the spaces, they are now separate parameters (Bash is interpreting the spaces on the second line as a parameter separator) and are now only printed correctly because of the echo command. – Whef Sep 6 '11 at 7:19
Oh, you would like a single (bash) string to span lines! I see now. – Ray Toal Sep 6 '11 at 7:44
feedback

This probably doesn't really answer your question but you might find it useful anyway.

The first command creates the script that's displayed by the second command.

The third command makes that script executable.

The fourth command provides a usage example.

john@malkovich:~/tmp/so$ echo $'#!/usr/bin/env python\nimport textwrap, sys\n\ndef bash_dedent(text):\n    """Dedent all but the first line in the passed `text`."""\n    try:\n        first, rest = text.split("\\n", 1)\n        return "\\n".join([first, textwrap.dedent(rest)])\n    except ValueError:\n        return text  # single-line string\n\nprint bash_dedent(sys.argv[1])'  > bash_dedent
john@malkovich:~/tmp/so$ cat bash_dedent 
#!/usr/bin/env python
import textwrap, sys

def bash_dedent(text):
    """Dedent all but the first line in the passed `text`."""
    try:
        first, rest = text.split("\n", 1)
        return "\n".join([first, textwrap.dedent(rest)])
    except ValueError:
        return text  # single-line string

print bash_dedent(sys.argv[1])
john@malkovich:~/tmp/so$ chmod a+x bash_dedent
john@malkovich:~/tmp/so$ echo "$(./bash_dedent "first line
>     second line
>     third line")"
first line
second line
third line

Note that if you really want to use this script, it makes more sense to move the executable script into ~/bin so that it will be in your path.

Check the python reference for details on how textwrap.dedent works.

If the usage of $'...' or "$(...)" is confusing to you, ask another question (one per construct) if there's not already one up. It might be nice to provide a link to the question you find/ask so that other people will have a linked reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.