On Sat, May 31, 2008 at 9:48 PM, Bruce Robertson <[EMAIL PROTECTED]> wrote:
> Here's a more basic example. This is really just a shell script formatting
> problem and it must be really simple. I'm trying to use \n as new line. The
> result I want from the echo statement is as follows but I can't figure out
> how to set x to get there.
>
> A
> B
> C
> D
>
>
> set x="A\nB\nC\nD"; echo $x

$ x="A\nB\nC\nD"; echo -e $x
A
B
C
D
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to