tags:

views:

35

answers:

1

Hi,

in a bash script I got from other programmer, some lines length exceeds 80 columnds or more. What is the character or thing to be added to the line in order to indicate that the line continues on the next line?

Thanks

+3  A: 

The character is a backslash \

Guillaume
thanks. and what is the usual limit in columns of a bash script?
Werner
bash has no interesting column limit; for clarity you should try to limit to 70-80 chars per column.
Habbie