欢迎光临
我们一直在努力

Docker搭建通过命令行的文件分享

docker run --publish 8080:8080 dutchcoders/transfer.sh:latest --provider local --basedir /tmp/

命令

curl --upload-file ./nezha.sh ip:prot/file.sh

例如

curl --upload-file ./nezha.sh http://192.168.1.11:8080/file.sh

http://192.168.1.11:8080/1nfVIlf/file.sh

便捷方式

只需要把下述代码加入到交互shell的配置文件中即可,我用的是zsh,所以编译 ~/.zshrc,将这段脚本加入进去,写入保存之后执行"source ~/.zshrc"刷新一下。

transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi
tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; }

使用方法

执行"transfer BDW.sh "
未经允许不得转载:798VPS » Docker搭建通过命令行的文件分享

相关推荐

  • 暂无文章