I'm running OSX 10.7 and i'm looking for a way to search for a string in the contents of a file on a remote FTP server. I'd like to be able to run the search over ftp rather than having to download all the files, and then search them locally.

Is there an app for that, or a way i can do it from the terminal?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

This does not work with FTP.

The reason is that FTP is a protocol for listing and transferring files only. Nothing more, nothing less. You can get the name of a file, or list a folder's files, or you can transfer it to your machine. You can't, however, peek into the file.

Searching the contents of the file would be a much more complicated task than just serving it. FTP is not designed to do this and will never allow this.


Do it over SSH if you can.

If you have access over SSH, you can send a remote command that would allow you to search within files. Download Cyberduck.app and connect to the server.

Then send a command using Option-Cmd-C.

grep -ri "something" /remote/folder

This would search for "something" within /remote/folder and all of its children.

enter image description here

Have a look at some grep examples (here or here) to see how you could use it.

link|improve this answer
Thanks for the clarification, and examples. In this case, the server in question is a shared hosting server, and I don't have SSH access. I was hoping there was a way to do it strictly over FTP instead. – Dan Aug 15 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.