Say you have the following directory structure
degreethem-lm:bash jithine$ ls * folder1: test.txt folder2: test.txtNow if I want to edit both the text files under I can use the ** operator like this.
degreethem-lm:bash jithine$ vim -p **/test.txt
The above command will open both the test.txt for editing in vim.