Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Perl IDE over SSH

Tags:

linux

ssh

perl

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,

like image 886
snoofkin Avatar asked Mar 20 '26 10:03

snoofkin


2 Answers

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

like image 69
Ben Avatar answered Mar 21 '26 23:03

Ben


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).

like image 26
cftarnas Avatar answered Mar 22 '26 01:03

cftarnas