Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: store some parameters/arguments for later use



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