tags:

views:

25

answers:

1

In the zsh programming language,

how do I get the entire list of arguments as a string in "" ?

i.e. in

myzshcommand 1 2 3 foo bar

I want something to match me "1 2 3 foo bar"

Thanks!

+3  A: 

Have you tried using $@?

Miguel Ventura