Transfer.sh:命令列式檔案分享網是一個支援線上拖拽式儲存和命令列式的檔案儲存網站,最大支援上傳5GB,上傳和下載的速度很快,上傳後的檔案支援URL共享,支援ZIP或Tar壓縮格式。
一般我們都是在Windows下上傳檔案到各種雲端儲存裡去,今天分享的網站可以支援Linux系統,直接採用命令列就可以上傳,幾個簡單的命令就可以把Linux系統裡的檔案上傳的網路中去,並生成URL連結。
這裡提供幾個命令引數:
1、上傳:curl –upload-file ./hello.txt https://transfer.sh/hello.txt
2、下載:curl https://transfer.sh/66nb8/hello.txt
3、建立共享別名:
transfer() { curl –upload-file $1 https://transfer.sh/$(basename $1); }
alias transfer=transfer
4、加密上傳:cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT –upload-file “-” https://transfer.sh/test.txt
5、解密下載:curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
看到上面的加密和解密功能,還有支援最大5G的檔案上傳,並且沒有上傳檔案個數的限制,說道這裡你覺得這個儲存網站可以做什麼?