Bash Script: Echo continuation across many lines

I am writing a bash script that automatically generates a macro program.
I want to have an echo on multiple lines and getting an error

/home/chaos/instru-correct.sh: line 309: command line is: command not found

I am using

      echo "# The general synopsis of the $mfl" \ 
           "command line is"                                >> $mfl

We've been here before...

Having <backslash><space><newline> instead of <backslash><newline> does not give you a continuation line; it gives you an escaped <space> character on one line and your unrecognized command on the next line.

1 Like

Ohhh, same thing as before is it. Had forgotten about that