From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from apollo.le.ac.uk ([143.210.16.125]) by hawkwind.utcs.utoronto.ca with SMTP id <24867>; Sat, 13 Nov 1999 18:22:47 -0500 Received: from happy.star.le.ac.uk ([143.210.36.58]) by apollo.le.ac.uk with smtp (Exim 3.03 #1) id 11mENr-00069L-00 for rc@hawkwind.utcs.toronto.edu; Fri, 12 Nov 1999 10:56:47 +0000 Received: (qmail 10748 invoked from network); 12 Nov 1999 10:57:10 -0000 Received: from ltpcg.star.le.ac.uk (tjg@143.210.36.203) by happy.star.le.ac.uk with SMTP; 12 Nov 1999 10:57:10 -0000 To: yann.golanski@theplanet.net Cc: rc@hawkwind.utcs.toronto.edu Subject: Re: rc feature? In-Reply-To: <19991112100634.A27688@kierun.localnet> Date: Fri, 12 Nov 1999 05:56:45 -0500 From: Tim Goodwin Message-ID: > I get the following error, when using ``='': > ; configure --prefix=/usr/local > syntax error > ; nslookup -querytype=mx 127.0.0.1 > syntax error > > Any idea how to solve this as it seem not to be covered in the man page? Yes it is... rc interprets several characters specially; special char- acters automatically terminate words. The following char- acters are special: # ; & | ^ $ = ` ' { } ( ) < > The single quote (') prevents special treatment of any character other than itself. So you just need to quote the character, like this. ; configure '--prefix=/usr/local' ; nslookup '-querytype=mx' 127.0.0.1 Tim.