I've inherited a huge joomla website (hundreds of nested folders and thousands of files.) I need to be able to find a specific piece of code, but have no idea which file it's in. Is there a GUI FTP client that has an integrated grep-type function?
|
|||||||
|
|
you can mount the ftp resource as a local
and search with your favorite tools |
|||
|
|
|
Like karthick87 wrote, I generally use Nautilus to mount all my network shares. I have the
|
|||
|
|
|
Any way of full-text search via pure FTP would involve first downloading applicable files as whole, then browsing through them. So be simple: create local mirror of FTP and search through it. All tools described before do the same, but implicitly. |
|||
|
|
|
I think the question was sort of missed. It boils down to this. FTP only transfers files. If all you have is FTP access you will need to download all the files and search them with your favorite search tool. |
|||
|
|



ssh server; cd /joomla/; grep -ri "text" *:) – Marco Ceppi♦ Dec 29 '10 at 19:45