文件传输小技巧
Posted stdpain
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件传输小技巧相关的知识,希望对你有一定的参考价值。
一次性传输,推荐个实用技巧,免装工具.
接收端 nc -l port >file
发送端 nc ip port < file
多文件可配合压缩命令
示例
接收端 nc -l port | tar -xzvf - -C /the/path/to/save
发送端 tar -czvf -O - file1 file2 dir1 dir2 | nc ip port
以上是关于文件传输小技巧的主要内容,如果未能解决你的问题,请参考以下文章