Two lines can be linked together as a unit using '\' (which is a somewhat arbitrarily chosen character). Accordingly both are parsed together. What do you call the linking character. I know that '#!' is the 'shebang' and ! is the bang, but what is the '\'?

link|improve this question

1  
\ isn't very "arbitrary"; it's used as the escape character in many other places: \", \n, and so on. – grawity Nov 6 '10 at 16:32
feedback

1 Answer

up vote 4 down vote accepted

It's called a backslash.

link|improve this answer
1  
In the context that the OP is asking about, the backslash is often referred to as a "line-continuation character". – Dennis Williamson Nov 6 '10 at 18:00
feedback

Your Answer

 
or
required, but never shown

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