Link to home
Create AccountLog in
Avatar of Erwin Pombett
Erwin PombettFlag for Switzerland

asked on

how can i save vimgrep result to a file ?

Hello experts,

i've spent way toooo much time looking up on internet : how to save to a file the vimgrep result.
i'm working on

on vim i know we can use :[range lines]w filename.tosave
this ^ is working smoothly.  

we can also use  :vimgrep "whatimlookingfor" % | copen
this ^ shows me a beautiful display with contains filename, char, colon.....the line
this is what i'd like to save to a file: "my_research.rs"


but i dont know what to suffix with the following command:
here i'm looking in many files  
:vimgrep "whatimlookingforinmanyfiles" **/* | copen    [???????]

my question:
how can i save what i see with
:vimgrep "whatimlookingforinmanyfiles" **/* | copen    


thank you in advance !
this is something i'd really like to manage ;)
Avatar of arnold
arnold
Flag of United States of America image

Not familiar with vimgrep since I use grep or egrep
egrep -l 'whatiamlookingfor' */*

The report will be the filenames that match.

From what I scanned, vimgrep goes through pre loaded within vim.
ASKER CERTIFIED SOLUTION
Avatar of Erwin Pombett
Erwin Pombett
Flag of Switzerland image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of Erwin Pombett

ASKER

... i found the solution. ... dont know how to close the question, still an interesting solution