How can you put a list of files to Vim\'s -o -mode?
I have a list of files as Grep\'s output. I run unsuccessfully
grep -il
Try
vim -p `grep -il sid *`
if you want to open the files in different tabs in the same window.