viewing stdout of shell command in gvim

Hi,

What I would like to do is to grep and view the results in a separate gvim window all in a single command. Something like:

view_this_stdout_in_gvim < grep something my_path/

And not just for grep, but for any command's STDOUT...

How can I do this in csh / tcsh ?

Thanks,
SK

Just tell vim to edit stdin:

 % grep something my_path | gvim - 

In bash you can also do this with standard vi by using process subsitution:

 $ vi <(grep something my_path)