Githubstars115K,别告诉我你不知道这个文件传输工具。支持数据加密传输,最大允许上传10GB,上传下载速度都非常快。上传的文件支持URL分享,支持ZIP或Tar压缩格式。Transfer.sh旨在与Linuxshell一起使用,目前支持s3(AmazonS3)、gdrive(GoogleDrive)、storj(Storj)提供程序和本地文件系统(local)。目前Transfer.sh在Github上有11.7Kstars,累计分支1.2K(Github地址:https://github.com/dutchcoders/transfer.sh)我们来看看如何使用:上传:$curl--upload-file./hello.txthttps://transfer.sh/hello.txt加密上传:$cat/tmp/hello.txt|gpg-ac-o-|curl-XPUT--upload-file"-》https://transfer.sh/test.txt下载解密:$curlhttps://transfer.sh/1lDau/test.txt|gpg-o->/tmp/hello.txt上传到virustotal:$curl-XPUT--upload-filenhgbhhjhttps://transfer.sh/test.txt/virustotaldelete$curl-XDELETE设置最大下载量$curl--upload-file./hello.txthttps://transfer.sh/hello.txt-H"Max-Downloads:1"#Limitthenumberofdownloads设置最大天数$curl--upload-file./hello.txthttps://transfer.sh/hello.txt-H"Max-Days:1"#Setthenumberofdaysbeforedeletion
