L
|
laonian 3/10/2008 |
Hi, i want to display a message with many lines. What must i do, if i want to insert a new line feed? echo "first line" echo "second line" and so on first line second line Rainer
|
R
|
rainerwolf author 4/7/2008 |
You may try: echo "first line"; echo " "; echo "second line"; echo " "; and so on
|