From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2391 invoked from network); 2 Oct 2002 16:31:46 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 2 Oct 2002 16:31:46 -0000 Received: (qmail 29653 invoked by alias); 2 Oct 2002 16:31:18 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5414 Received: (qmail 29641 invoked from network); 2 Oct 2002 16:31:17 -0000 Date: Wed, 2 Oct 2002 17:32:53 +0200 From: DervishD To: Heinrich =?iso-8859-1?Q?G=F6tzger?= Cc: zsh-users@sunsite.dk Subject: Re: exclamation mark expansion in shell command Message-ID: <20021002153253.GB4347@DervishD> References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.4i Organization: Pleyades Net Sender: =?iso-8859-1?B?UmH6bCBO+vFl?= =?iso-8859-1?Q?z?= de Arenas Coronado Hi Heinrich :) > 'java Klass !1D200!1/C14objToRefresh_9' > will expand to some nasty string containing very old commands... > (I know, it's supposed to be that way, but I don't want it here) > How can I switch this off (temporarely)? java Klass '!1D....'. If you cannot use single quote, use double quotes or no quotes and quote the '!' char individually (\!). Raśl