保存后自动上传文件

发布于 2024-10-24 13:21:26 字数 114 浏览 1 评论 0原文

我有一个 Rackspace 云服务器,我在其中托管我的网站,问题是我每次使用 SFTP 程序都需要上传代码,但没有任何方法可以自动执行此操作吗?

PS:我使用 TextMate

I have a Rackspace Cloud Server, where I host my site, the problem is that I need to upload the code every time using a SFTP program, but isn't any way to automate this?

PS: I use TextMate

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初心 2024-10-31 13:21:26

如果您还使用 Transmit,则可以为项目启用 Docksend 并将此命令映射到捆绑包编辑器中您选择的键:

#!/bin/sh
osascript "${TM_BUNDLE_SUPPORT}/bin/send_to_transmit.applescript" "$TM_FILEPATH" &>/dev/console &
echo "Sent ‘${TM_FILENAME}’ to Transmit"

编辑:实际上有一个捆绑包负责处理此问题 http://svn.textmate.org/trunk/Bundles/Transmit.tmbundle/

我使用 CTRL+Shift+F为此。

If you also use Transmit, you can enable Docksend for a project and map this command to a key of your choice in the bundle editor:

#!/bin/sh
osascript "${TM_BUNDLE_SUPPORT}/bin/send_to_transmit.applescript" "$TM_FILEPATH" &>/dev/console &
echo "Sent ‘${TM_FILENAME}’ to Transmit"

Edit: There is actually a bundle that takes care of that here http://svn.textmate.org/trunk/Bundles/Transmit.tmbundle/

I use CTRL+Shift+F for that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文