Transfer.sh:命令行式文件分享网简介:
Transfer.sh:饬令行式文件分享网是一个撑持正在线拖拽式存储以及饬令行式的文件存储网站,最年夜撑持上传5GB,上传以及下载的速率很快,上传后的文件撑持URL同享,撑持ZIP或者Tar紧缩格局。
普通咱们都是正在Windows下上传文件到各类云存储里去,明天分享的网站能够撑持Linux零碎,间接采纳饬令行就能够上传,多少个复杂的饬令就能够把Linux零碎里的文件上传的收集中去,并天生URL链接。
这里供给多少个饬令参数:
一、上传:curl --upload-file ./hello.txt https://transfer.sh/hello.txt
二、下载:curl https://transfer.sh/66nb8/hello.txt
三、创立同享别号:
transfer() { curl --upload-file $1 https://transfer.sh/$(basename $1); }
alias transfer=transfer
四、加密上传:cat /tmp/hello.txt|gpg -ac -o-|curl -X PUT --upload-file "-" https://transfer.sh/test.txt
五、解密下载:curl https://transfer.sh/1lDau/test.txt|gpg -o- > /tmp/hello.txt
看到下面的加密息争密功用,另有撑持最年夜5G的文件上传,而且不上传文件个数的限定,说道这里你感到这个存储网站能够做甚么?
网址入口:https://transfer.sh/