远程 Linux 服务器上的 Perl IDE
我一直在远程使用 Putty 和 pgAdmin III 操作 Linux 服务器上的 PostgreSQL 数据库,但现在需要做一些更繁重的工作来修改 Perl 和 PHP 脚本,这些脚本用于解析提交到我们网站的数据输入文件。
我更喜欢具有强大调试功能的东西。我了解(并且喜欢)Java 版 Eclipse,但不知道它是否是 Perl/PHP 和远程访问的一个选项?其他建议?这是“远程”部分让我陷入困境......
谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尝试过 Padre 吗?
http://padre.perlide.org/trac/wiki/Features/RemoteEditing
Have you tried Padre?
http://padre.perlide.org/trac/wiki/Features/RemoteEditing
如果您习惯使用 Emacs,则可以使用
cperl-mode
和tramp
来访问要编辑的远程文件。支持 Perl 调试器 (cperl-db
),但对于通过 SSH 访问的计算机来说可能无法无缝支持。您可能想要查看的另一个项目是 geben。更新:显然,Emacs 的调试器界面非常与
tramp
良好集成。If you are comfortable with using Emacs, you can use
cperl-mode
andtramp
to access the remote files you want to edit. There is support for the Perl debugger (cperl-db
), but that probably won't seamlessly for a machine accessed via SSH. Another project you might want to look at is geben.Update: Apparently, Emacs' debugger interface is quite well-integrated with
tramp
.