From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gatech.edu (gatech.edu [130.207.244.244]) by werple.mira.net.au (8.6.12/8.6.9) with SMTP id TAA19221 for ; Wed, 6 Sep 1995 19:27:06 +1000 Received: from math (math.skiles.gatech.edu) by gatech.edu with SMTP id AA22715 (5.65c/Gatech-10.0-IDA for ); Wed, 6 Sep 1995 05:25:12 -0400 Received: by math (5.x/SMI-SVR4) id AA02786; Wed, 6 Sep 1995 05:18:25 -0400 Old-Return-Path: Resent-Date: Wed, 6 Sep 1995 10:19:53 +0100 (BST) Old-Return-Path: From: Zefram Message-Id: <2926.199509060919@stone.dcs.warwick.ac.uk> Subject: Re: accessing full command line To: alex_ramos@wiltel.com Date: Wed, 6 Sep 1995 10:19:53 +0100 (BST) Cc: zsh-users@math.gatech.edu (Z Shell users mailing list) In-Reply-To: <199509051356.AA02701@intruder.wiltel.com> from "Alex Ramos" at Sep 5, 95 08:56:41 am X-Loop: zefram@dcs.warwick.ac.uk X-Stardate: [-31]6246.94 Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Resent-Message-Id: <"mRmSr.0.Dh.NTMJm"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/62 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu >I would like to know if there is any way (e.g. an undocumented >feature or a source code patch) in zsh to access the full >command line passed to a function or alias. For example, if >'foo' is a function, and I type > > foo "blah blah $$" $XYZ > >I'd like to (inside 'foo') have access to the string '"blah blah $$" $XYZ' >as it was typed. No, there's no way. But if all you want to do is inhibit globbing, you could do alias foo="noglob foo" -zefram