snoofkin
snoofkin

Reputation: 8895

Perl IDE over SSH

is there a Perl IDE / Editor that supports working on files remotely (via SSH)?

Currently I'm using the shell with vim & nano on the remote machine, and when working locally, I usually use Aptana Studio (Eclipse + EPIC).

p.s: I'm working under linux.

Thanks,

Upvotes: 2

Views: 974

Answers (4)

ppant
ppant

Reputation: 762

I use Geany via Putty + WinSCP

Upvotes: 0

tripleee
tripleee

Reputation: 189628

It's not an IDE in the click and drool sense, but Emacs + Tramp is what I use (and these days, Tramp is included with Emacs).

Upvotes: 2

cftarnas
cftarnas

Reputation: 1755

I've been using Active State's Komodo Edit for the last few years. It's free, cross platform (linux, OSX, windows), can edit over scp or sftp and works well with perl. Active State also make the non-free Komodo IDE that is a more full featured IDE.

Komodo can also do vi emulation, which was a trifecta for me (perl/ssh/vi).

Upvotes: 3

Ben
Ben

Reputation: 21249

You could mount the remote file system with sshfs then work on it with any local IDE

Upvotes: 6

Related Questions