I have a longish list of files opened in vim that looks like this:
/dir1/file1 /dir2/file2 /dir2/file3 .....
How can I open all of them one
I often need to open a changing list of files that had been modified in my SVN checkout. This one liner works to open all modified files in vim tabs.
svn st | grep ^M | awk "{print($2)}" | xargs vim -p