Answers:
我使用名为sprunge.us的在线服务。它使您可以像这样简单地发布
command | curl -F "sprunge=<-" http://sprunge.us
我在系统上使用了别名,因此它变得很简单。在末尾添加的xclip将URL放入X剪贴板。它不是在每个系统上都存在,并且还有其他一些类似的工具。curl -F "sprunge=<-" http://sprunge.us | xclip
webshare
command | webshare
我使用ix.io,并在.netrc中设置了帐户,并安装了命令行工具;简单而酷。
然后,您可以像上面的答案一样通过它传送内容:
command which produces output | ix
或直接粘贴文件:
ix <filename>
这将返回URL。
然后我为此额外设置了一个git别名,以便可以轻松粘贴我的格式补丁并为其获取网址:
~/.gitconfig:
[alias]
post = !sh -c 'git format-patch --stdout $1 | ix' -
要粘贴我做的补丁,例如:
git post HEAD~1
或粘贴vim当前缓冲区中的内容:
:w ! ix
用于上传文件,但不能太大:使用其客户端http://paste.xinu.at/。
ix.io
对我来说,真正的强大功能是能够通过帐户和令牌编辑自己的帖子来重用固定的URL。