Linux
wgetpaste 替代品?
有沒有 wgetpaste 替代品?
作為澄清…
wgetpaste 是一個非常簡單的命令行界面,用於各種線上 pastebin 服務。
基本用法是簡單地將本地文件上傳到類似 pastebin 的線上服務進行共享。
我使用名為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>
這將返回網址。
然後我為此另外設置了一個 git 別名,以便我可以輕鬆地粘貼我的格式更新檔並獲取它的 url:
~/.gitconfig: [alias] post = !sh -c 'git format-patch --stdout $1 | ix' -
要粘貼我做的更新檔,例如:
git post HEAD~1
或將目前緩衝區中的任何內容粘貼到 vim 中:
:w ! ix
用於上傳文件,不要太大:http ://paste.xinu.at/及其客戶端。