transfer.sh快速分享文件
transfer.sh可以使用命令行快速的分享文件,最大可以上传10G,有效期最长14天,也可以设定下载次数和有效期。
上传文件
1 | $ curl --upload-file ./go.sh https://transfer.sh/go.sh |
设定下载次数和最大天数
1 | $ curl -H "Max-Downloads: 1" -H "Max-Days: 5" --upload-file ./hello.txt https://transfer.sh/hello.txt |
添加.bashrc命令行别名
1 | transfer() { |
然后可以这样
1 | $ transfer hello.txt |
是不是很简单,很好用,但是,不要用来传输敏感文件,传输敏感文件请使用onionshare或加密后再传输。
还有一点儿要注意,github上的tansfer.sh项目与http://transfer.sh网站并无关系。
References:
[1]Easy and fast file sharing from the command-line