Hi Aldo,

> Hi Greg,
> I appreciated you fast response.  
> when I execute the following 
> echo "Un!sphere8" >> '/user/filename.txt'

! is a reserved word in the shell. 'man bash' for the rest of them.

Instead use one of:

echo Un\!sphere8 >> '/user/filename.txt'
echo 'Un!sphere8' >> '/user/filename.txt' 

You can read about the quoting rules in the man page as well.

-b

--
if you can't be just, be arbitrary.             <william s. burroughs>
_______________________________________________
Discuss mailing list
Discuss@blu.org
http://lists.blu.org/mailman/listinfo/discuss

Reply via email to