> Hello, > > here is the detail of the steps that i am trying to do, > > if there are multiple files in a directory, i can do it as 'vim *.md' > > but i want to find it as > > find /home/aahna -iname "*.md" to find all the files > > now if there is a match then the command should automatically open the .md > file. >
@Aahna Can you try the following: vim $(find /home/aahna -iname "*.md") or vim $(find "/home/aahna" -iname "*.md") thanks Ragini

