有 wgetpaste 替代品吗?
作为澄清...
wgetpaste 是各种在线pastebin 服务的极其简单的命令行界面。
基本用法就是简单地将本地文件上传到类似pastebin的在线服务以进行共享。
答案1
我使用名为的在线服务美国斯普鲁格。它可以让你像这样简单地发帖
command | curl -F "sprunge=<-" http://sprunge.us
我在我的系统上使用了别名,所以它变得简单。最后添加的xclip将url获取到X剪贴板中;它并不适用于每个系统,并且还有其他一些类似的工具。curl -F "sprunge=<-" http://sprunge.us | xclip
webshare
command | webshare
答案2
我用ix.io在 .netrc 中设置帐户并安装其命令行工具;它简单又酷。
然后你可以像上面的答案一样通过它传递东西:
command which produces output | ix
或者直接粘贴文件:
ix <filename>
这会返回 url。
然后我还为此设置了一个 git 别名,以便我可以轻松粘贴我的格式补丁并获取它的 url:
~/.gitconfig:
[alias]
post = !sh -c 'git format-patch --stdout $1 | ix' -
要粘贴补丁,我会这样做,例如:
git post HEAD~1
或者将当前缓冲区中的内容粘贴到 vim 中:
:w ! ix
用于上传文件,不要太大:http://paste.xinu.at/与其客户。