文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

推荐一款 GitHub 星标 11.5K 的命令行文件传输神器(开源免费,支持 10GB 大文件)

2024-12-14 00:16

关注

 在工作和生活中,我们经常需要在不同设备之间传输文件,但往往会遇到需要安装第三方软件、文件大小限制、传输速度慢等问题。安装第三方软件还好,但是限制传输速度和文件大小就非常恶心了,用着用着就得逼得你充值付费了。不然紧急需要传输一个东西,就非常花费时间和精力了。

1软件介绍

Easy and fast file sharing from the command-line.

当然,我们可以也使用,老牌的 百度云盘(非会员限速)、Dropbox(速度非常之慢)和 Google Drive(需要科学上网),新进的 阿里云盘(虽然不限速但上传不能加速)、奶牛快传(有文件大小总量限制)。但是这里我们要介绍的是一个基于命令行的文件传输工具 —— transfer.sh。

2使用方式

    Sample use cases

  1. # 将shell函数添加到.bashrc或.zshrc文件中  
  2. transfer() {  
  3.   if [ $# -eq 0 ]; then  
  4.     echo "No arguments specified."  
  5.     echo "Usage: "  
  6.     echo "  transfer <file|directory> ... | transfer <file_name> 
  7.     return 1  
  8.   fi  
  9.   if tty -s; then  
  10.     file="$1"  
  11.     file_name=$(basename "$file")  
  12.     if [ ! -e "$file" ]; then  
  13.       echo "$file: No such file or directory"  
  14.       return 1  
  15.     fi  
  16.     if [ -d "$file" ]; then  
  17.       file_name="$file_name.zip"  
  18.       (cd "$file" && zip -r -q - .) | curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name" | tee /dev/null  
  19.     else  
  20.       cat "$file" | curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name" | tee /dev/null  
  21.     fi  
  22.   else  
  23.     file_name="$1"  
  24.     curl --progress-bar --upload-file "-" "https://transfer.sh/$file_name"|tee /dev/null  
  25.   fi  
  26.  
  27. # 现在可以使用函数来上传文件  
  28. $ transfer hello.txt 
  1. # 使用curl命令上传文件  
  2. $ curl --upload-file ./hello.txt https://transfer.sh/hello.txt  
  3. https://transfer.sh/66nb8/hello.txt  
  4. # 上传文件设定最大下载次数和过期时间  
  5. $ curl -H "Max-Downloads: 1" -H "Max-Days: 5" --upload-file ./hello.txt https://transfer.sh/hello.txt  
  6. https://transfer.sh/66nb8/hello.txt  
  7. # 下载文件  
  8. $ curl https://transfer.sh/66nb8/hello.txt -o hello.txt  
  1. # 还支持wget上传文件  
  2. $ wget --method PUT --body-file=/tmp/file.tar https://transfer.sh/file.tar -O - -nv  
  3. # 还支持HTTPie上传文件  
  4. $ http https://transfer.sh/ -vv < /tmp/test.log  
  5. # 还支持PowerShell上传文件  
  6. PS H:\> invoke-webrequest -method put -infile .\file.txt https://transfer.sh/file.txt 
  1. # 使用filedata执行文件地址  
  2. $ curl -i -F filedata=@/tmp/hello.txt -F filedata=@/tmp/hello2.txt https://transfer.sh/  
  3. # 将下载合并为zip或tar存档  
  4. $ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).tar.gz  
  5. $ curl https://transfer.sh/(15HKz/hello.txt,15HKz/hello.txt).zip 
  1. # 使用gpg加密文件  
  2. $ cat /tmp/hello.txt | gpg -ac -o- | curl -X PUT --upload-file "-" https://transfer.sh/test.txt  
  3. # 下载并解密  
  4. $ curl https://transfer.sh/1lDau/test.txt | gpg -o- > /tmp/hello.txt 
  1. # 使用openssl加密文件  
  2. $ cat /tmp/hello.txt | openssl aes-256-cbc -pbkdf2 -e | curl -X PUT --upload-file "-" https://transfer.sh/test.txt  
  3. # 下载并解密  
  4. $ curl https://transfer.sh/1lDau/test.txt | openssl aes-256-cbc -pbkdf2 -d > /tmp/hello.txt  
  1. # 从keybase导入key  
  2. $ keybase track [them]  
  3. # 加密文件  
  4. $ cat somebackupfile.tar.gz | keybase encrypt [them] | curl --upload-file '-' https://transfer.sh/test.txt  
  5. # 解密下载  
  6. $ curl https://transfer.sh/sqUFi/test.md | keybase decrypt 
  1. # 使用Clamav扫描恶意软件或病毒  
  2. $ wget http://www.eicar.org/download/eicar.com  
  3. $ curl -X PUT --upload-file ./eicar.com https://transfer.sh/eicar.com/scan  
  4. # 上传恶意软件到VirusTotal并获得永久链接  
  5. $ curl -X PUT --upload-file nhgbhhj https://transfer.sh/test.txt/virustotal 
  1. # 备份+加密+传输  
  2. $ mysqldump --all-databases | gzip | gpg -ac -o- | curl -X PUT --upload-file "-" https://transfer.sh/test.txt 
  1. # 传输和发送带有链接的电子邮件  
  2. $ transfer /tmp/hello.txt | mail -s "Hello World" user@yourmaildomain.com 
  1. # grep syslog for pound and transfer  
  2. $ cat /var/log/syslog | grep pound | curl --upload-file - https://transfer.sh/pound.log  

 

来源:奇妙的Linux世界内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯