传输工具:快乐的使用命令进行文件传输!
在工作和生活中,我们经常需要在不同设备之间传输文件,但往往会遇到需要安装第三方软件、文件大小限制、传输速度慢等问题。安装第三方软件还好,但是限制传输速度和文件大小就非常恶心了,用着用着就得逼得你充值付费了。不然紧急需要传输一个东西,就非常花费时间和精力了。
1. 软件介绍
Easy and fast file sharing from the command-line.
当然,我们可以也使用,老牌的 百度云盘(非会员限速)、Dropbox(速度非常之慢)和 Google Drive(需要科学上网),新进的 阿里云盘(虽然不限速但上传不能加速)、奶牛快传(有文件大小总量限制)。但是这里我们要介绍的是一个基于命令行的文件传输工具 —— transfer.sh
。
- Made for use with shell
- Share files with a URL
- For free
- Upload up to 10 GB
- Files stored for 14 days
- Encrypt your files
- Maximize amount of downloads
2. 使用方式
Sample use cases
- [1] 命令行使用
# 将shell函数添加到.bashrc或.zshrc文件中
transfer() {
if [ $# -eq 0 ]; then
echo "No arguments specified."
echo "Usage: "
echo " transfer <file|directory> ... | transfer <file_name>"
return 1
fi
if tty -s; then
file="$1"
file_name=$(basename "$file")
if [ ! -e "$file" ]; then
echo "$file: No such file or directory"
return 1
fi
if [ -d "$file" ]; then
file_name="$file_name.zip"
(cd "$file" && zip -r -q - .) | curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name" | tee /dev/null
else
cat "$file" | curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name" | tee /dev/null
fi
else
file_name="$1"
curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name"|tee /dev/null
fi
}
# 现在可以使用函数来上传文件
$ transfer hello.txt
- [2] 简单上传文件 - 官方支持界面上传
# 使用curl命令上传文件
$ curl --upload-file ./hello.txt https://transfer.sh/hello.txt
https://transfer.sh/66nb8/hello.txt
# 上传文件设定最大下载次数和过期时间
$ curl -H "Max-Downloads: 1" -H "Max-Days: 5" --upload-file ./hello.txt https://transfer.sh/hello.txt
https://transfer.sh/66nb8/hello.txt
# 下载文件
$ curl https://transfer.sh/66nb8/hello.txt -o hello.txt
# 还支持wget上传文件
$ wget --method PUT --body-file=/tmp/file.tar https://transfer.sh/file.tar -O - -nv
# 还支持HTTPie上传文件
$ http https://transfer.sh/ -vv < /tmp/test.log
# 还支持PowerShell上传文件
PS H:\> invoke-webrequest -method put -infile .\file.txt https://transfer.sh/file.txt
- [3] 一次上传多个文件
# 使用filedata执行文件地址
$ curl -i -F filedata=@/tmp/hello.txt -F filedata=@/tmp/hello2.txt https://transfer.sh/
# 将下载合并为zip或tar存档
$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).tar.gz
$ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).zip
- [4] 传输前使用加密您的文件
# 使用gpg加密文件
$ 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
# 使用openssl加密文件
$ cat /tmp/hello.txt | openssl aes-256-cbc -pbkdf2 -e | curl -X PUT --upload-file "-" https://transfer.sh/test.txt
# 下载并解密
$ curl https://transfer.sh/1lDau/test.txt | openssl aes-256-cbc -pbkdf2 -d > /tmp/hello.txt
# 从keybase导入key
$ keybase track [them]
# 加密文件
$ cat somebackupfile.tar.gz | keybase encrypt [them] | curl --upload-file '-' https://transfer.sh/test.txt
# 解密下载
$ curl https://transfer.sh/sqUFi/test.md | keybase decrypt
- [5] 扫描恶意软件
# 使用Clamav扫描恶意软件或病毒
$ wget http://www.eicar.org/download/eicar.com
$ curl -X PUT --upload-file ./eicar.com https://transfer.sh/eicar.com/scan
# 上传恶意软件到VirusTotal并获得永久链接
$ curl -X PUT --upload-file nhgbhhj https://transfer.sh/test.txt/virustotal
- [6] 加密传输备份 mysql 数据库
# 备份+加密+传输
$ mysqldump --all-databases | gzip | gpg -ac -o- | curl -X PUT --upload-file "-" https://transfer.sh/test.txt
- [7] 发送带有传输链接的电子邮件
# 传输和发送带有链接的电子邮件
$ transfer /tmp/hello.txt | mail -s "Hello World" [email protected]
- [8] 传输日志文件
# grep syslog for pound and transfer
$ cat /var/log/syslog | grep pound | curl --upload-file - https://transfer.sh/pound.log
3. 参考链接
The gift of roses brings fragrance to the hand.