Is it possible to redirect the output of a process (in bash) into an existing instance of (g)vim?
Something like:
cat myfile1.txt | awk 'print $1' | gvim -
Then I might start a new window inside my vim with :vne and want to fill it with the output from some other process.
