Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: store some parameters/arguments for later use
- X-seq: zsh-users 10896
- From: Fernando Vezzosi <fvezzosi@xxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: store some parameters/arguments for later use
- Date: Wed, 25 Oct 2006 02:36:30 +0200
- In-reply-to: <Xns9866B9D0D4D89zzappergmailcom@xxxxxxxxxxx>
- Mail-followup-to: Fernando Vezzosi <fvezzosi@xxxxxxxxxxx>, zsh-users@xxxxxxxxxx
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <Xns9866B9D0D4D89zzappergmailcom@xxxxxxxxxxx>
Hi everyone!
I'm a happy lurker of zsh-*, now I figured I could even be helpful to
someone else :)
On Tue, Oct 24, 2006 at 05:15:42PM +0000, zzapper wrote:
> > ls x1 x2 x3
> save_parameters
> ...
> ...
> ...
> vi recall_parameters
If the `ls' command was command number, say, 15 in history, you would be
able to use its arguments later with:
!15:0 == "ls"
!15:1 == "x1"
!15:2 == "x2"
.. And so on
Note that you can do it also this other way:
!ls:0 == "ls" # very useful example :)
!ls:1 == "x1"
!ls:2 == "x2"
.. And so on
HTH, bye
--
Fernando Vezzosi
3F29 4D20 510E E1AE 991D 3B12 D6BE 7C05 B289 97C9
Messages sorted by:
Reverse Date,
Date,
Thread,
Author