On Fri, 07 Dec 2007 18:33:22 -0500, Randy Yates wrote:

> I'm not sure if the problem is echo or the bash shell. 
> 
> echo -e "123\n   456"
> 
> yields the proper spacing. However, 
> 
> text="123\n   456"
> echo $text
> 
> does not. Why not?

try echo -e $text

Reply via email to