Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a bash script I got from another programmer, some lines exceeded 80 columns in length. What is the character or thing to be added to the line in order to indicate that the line continues on the next line?

share|improve this question

1 Answer

up vote 7 down vote accepted

The character is a backslash \

share|improve this answer
thanks. and what is the usual limit in columns of a bash script? – flow Oct 6 '10 at 10:06
bash has no interesting column limit; for clarity you should try to limit to 70-80 chars per column. – Habbie Oct 6 '10 at 10:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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