/ Published in: Bash
Used to transfer files with low overhead.
Expand |
Embed | Plain Text
#send file: cat file.ext | gzip -9 | nc -l 333 #receive file: nc www.hostname.com 333 > output.gz
You need to login to post a comment.
Used to transfer files with low overhead.
#send file: cat file.ext | gzip -9 | nc -l 333 #receive file: nc www.hostname.com 333 > output.gz
You need to login to post a comment.