IntelliJ:将文件内容粘贴到 hastebin.com

IntelliJ: Paste content of a file to hastebin.com

我正在寻找一种将文件内容直接从 IntelliJ 粘贴到 hastebin 的简单方法。

但是我没有找到任何适用于 IntelliJ 的插件。 我是 Xubuntu 14.12 上的 运行 IntelliJ。

提前致谢

您好,我们使用了此处提供的以下解决方案:https://github.com/seejohnrun/haste-client

通过在 Intellij 中使用简单的 Bash 脚本和外部工具。

Bash 脚本:

#!/bin/bash
hastepost() { a=$(cat); curl -X POST -s -d "$a" hastebin.com/documents | awk -F '"' '{print "hastebin.com/"}'; }

url=$(cat  | hastepost)
echo $url
xdg-open $url

如果执行完成后不需要打开浏览器,只需删除 bash 脚本的最后一行。

然后使用以下参数在 Intellij 中创建一个新的 External Tool

其中 /home/user/Dev/TOOLS/hastebin/hastebin.sh 是您的 bash 脚本的路径。