[meder@kat directoryName]$ grep -RlI "send you instr" * application/views/scripts/auth/forgot.phtml [meder@kat directoryName]$
Is there a quick hack to link to a single result? Can I somehow connect it to vim?
If you're fine with opening all the results in Vim, you can simply do:
vim $(grep -RlI "send you instr" *)
You will be buffered with the first matching file and you can switch to others using :next.
:next
Open a new file in vim and paste the found file name as text:
grep -RlI "send you instr" * | vim -
Open the found file directly in vim:
grep -RlI "send you instr" * | xargs vim
vim `grep -RlI "send you instr" *`
Source: https://habr.com/ru/post/1769227/More articles:Как убедиться, что файл существует или может быть создан до его написания в Python? - pythonASP.NET MVC - throwing exceptions? - design-patternshttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1769224/how-many-nginx-redirects-is-too-many&usg=ALkJrhgjAgVaM9LyPiWxpDMu48BjBpk7vAMemcached vs. HW Load Balancer with sticky sessions - memcachedsplitting the account algorithmically and fairly, then :) - pythonCocoa Simple Scripting Tutorial Application (Scripting Bridge) - objective-chttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1769229/now-to-convert-this-strings-to-date-time-object-in-python-or-django&usg=ALkJrhjMcwPk-RPpLzQapJZVKcX1qPSCzgBinding array + one object for Dropdownlist - c #Variable Object vs. class - python"System.TypeLoadException: Internal constraint: too many fields." With a large static data structure - c #All Articles