[CentOS] Feed a list of filenames to vim

Michael Gliwinski Michael.Gliwinski at henderson-group.com
Wed May 18 14:42:12 UTC 2011


On Wednesday 18 May 2011 15:09:19 Bowie Bailey wrote:
> >> $ vim `ls -1 *.txt`
> >> 
> >> or this:
> >> 
> >> $ vim `find /some/dir -name '*.txt'`
> >> 
> >> It works with any command that outputs a list of filenames.
> > 
> > Until you have a space in a filename.
> 
> True.  But unless vim has a null-separator option for command line
> arguments, I don't know of a way to automate that case.

How about just:

  $ vim *.txt

or, if you need recursive:

  $ eval vim $(find /some/dir -type f -printf '"%p" ')

(shell quotes expansions automatically, but you can still ensure output from 
find is appropriately quoted manually)


-- 
Michael Gliwinski
Henderson Group Information Services
9-11 Hightown Avenue, Newtownabby, BT36 4RT
Phone: 028 9034 3319

**********************************************************************************************
The information in this email is confidential and may be legally privileged.  It is intended solely for the addressee and access to the email by anyone else is unauthorised.
If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful.
When addressed to our clients, any opinions or advice contained in this e-mail are subject to the terms and conditions expressed  in the governing client engagement leter or contract.
If you have received this email in error please notify support at henderson-group.com

John Henderson (Holdings) Ltd
Registered office: 9 Hightown Avenue, Mallusk, County Antrim, Northern Ireland, BT36 4RT.
Registered in Northern Ireland
Registration Number NI010588
Vat No.: 814 6399 12
*********************************************************************************




More information about the CentOS mailing list