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
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
You could try (tested on 10.5) ..
$ vim `find ~/web_project -name "config_*.php"`
vim $(find ~/web_project -name "config_*.php")
frequently I want to check my find command first, so
find ~/web_project -name "config_*.php"
vim $(!!)