Suppose that I have a command, say find ABCD | grep text1 which outputs full-path of a file to be opened. I know I can send this output to vim using xargs and open the file, but this is possible only in command line.
How can I do this from inside vim editor?
vi "$(find ABCD | grep text1)" from the commandline or do you want to:! vi "$(find ABCD | grep text1)` from vi ?