Upload file on every save with Rsync(使用 Rsync 在每次保存时上传文件)
问题描述
我正在使用 Eclipse PDT(Ubuntu 10.10) 进行 Web 开发,并使用 Rsync 手动成功上传更改的文件.
Im using Eclipse PDT(Ubuntu 10.10) for web development and successfully uploading changed files with Rsync manually.
~$ rsync -e ssh -av /home/goksel/Sites/test goksel@goksel.com:test
sending incremental file list
test/
test/index.php
有没有办法让这个命令在每次保存时都起作用?
Is there a way to make this command work on every save?
我知道我可以通过使用 Aptana 的 Sync 工具来做到这一点,但不知何故它工作得非常慢.
I know that I can do this by using Aptana's Sync tool but somehow it works very slow.
推荐答案
有 2 个选项可用.如果您右键单击该项目,您可以添加一个外部构建器,它可以是一个 ant 文件或程序.这将在每次文件更改时运行.
There are 2 options available. If you right-click on the project you can add an external builder, which can be an ant file or a program. That will run on every file change.
第二个选项是使用目标管理中的远程系统资源管理器之类的东西:http://www.eclipse.org/tm/ 很多用户在处理他们想要同步到远程系统的项目(如 PHP)时使用它.
The second option is to use something like Remote System Explorer from Target Management: http://www.eclipse.org/tm/ A lot of users use this when working on projects (like PHP) that they want synced up to a remote system.
这篇关于使用 Rsync 在每次保存时上传文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Rsync 在每次保存时上传文件
基础教程推荐
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01