/ Published in: Bash
Used to transfer files with low overhead.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#send file: cat file.ext | gzip -9 | nc -l 333 #receive file: nc www.hostname.com 333 > output.gz