On Tue, May 19, 2009 at 09:42:36PM +0530, Foss User wrote:
> On Tue, May 19, 2009 at 8:43 PM, Eric Gerlach
> <egerl...@feds.uwaterloo.ca> wrote:
> > vim can do it like so (for example):
> >
> > (in command mode)
> > !!ls
> > (edit to your heart's content)
> > :%!wc
> >
> > I'm sure emacs can do it too, but I don't know emacs all that well.
> >
> > Cheers,
> 
> I tried this:
> 
> $ which firefox | vim -
> 
> vim opened.
> 
> Now when I press !!
> 
> :.!
> 
> appears at bottom.
> 
> Next I type |s and I get this error:
> 
> /bin/bash: -c: line 0: syntax error near unexpected token `|'
> /bin/bash: -c: line 0: `(|s) < /tmp/v754567/14 >/tmp/v754567/15 2>&1'
> 
> shell returned 2

That wasn't a pipe character, it was a lowercase 'L'.

What '!!' does is pipe the current line into the command specified.  I was
using that to load the result of an 'ls' into the buffer.  This command
replaces what is on the current line with the result of the command.

Then the command :%!wc means the following

: - enter ex command mode
% - on the entire buffer
! - pipe through command
wc - the command to use (wc in this case)

You can replace the '%' with any vim motion in order to pipe only certain lines
through a command.  You can even select an area in visual mode, type '!' and
then enter your command, and it will filter that area through the command.

Note that this always replaces what was there with the output of the command,
though.

Type :help filter in command mode for more information.

Cheers,

-- 
Eric Gerlach, Network Administrator
Federation of Students
University of Waterloo
p: (519) 888-4567 x36329
e: egerl...@feds.uwaterloo.ca


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to