From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: <138575261003110343m60b38ae1rdc053a48408d0219@mail.gmail.com> References: <138575261003110343m60b38ae1rdc053a48408d0219@mail.gmail.com> Date: Thu, 11 Mar 2010 11:53:44 +0000 Message-ID: From: roger peppe To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [9fans] rc strings Topicbox-Message-UUID: e607082c-ead5-11e9-9d60-3106f5b1d025 what about this? ifs=3D' ' n=3D`{echo 'a b'} or ifs=3D'' n=3D`{echo 'a b'} if you don't mind the newline character being in the string. On 11 March 2010 11:43, hugo rivera wrote: > Hi, > > % n=3D`{echo 'a =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 b'} > > sets n to a list containing two elements, 'a' and 'b'. How can I set n > to a single string 'a =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 b'? note that I = must execute external > commands, so the obvious solution > > % n=3D'a =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 b' > > doesn't work for me. > Saludos, > > -- > Hugo > >