tags:

views:

65

answers:

2

I used:

find ~/web_project -name "config_*.php" -print | xargs vim

In vim, anything is ok. But, if exit vim, terminal is freeze.

My env: osx 10.6, macvim

+2  A: 

You could try (tested on 10.5) ..

$ vim `find ~/web_project -name "config_*.php"`
The MYYN
This can be simplified into `$ vim \`find ~/web_project -name "config_*.php"\``
wallyk
+3  A: 
vim $(find ~/web_project -name "config_*.php")

frequently I want to check my find command first, so

find ~/web_project -name "config_*.php"
vim $(!!)
EMiller