From c1330a5951352ef85d525f8aa29a1d8a9d573b77 Mon Sep 17 00:00:00 2001 From: anonymous <> Date: Tue, 25 Apr 2023 21:21:02 -0400 Subject: [PATCH] create/update 'Almost line-speed file-copy using netcat.md' file --- Almost line-speed file-copy using netcat.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Almost line-speed file-copy using netcat.md diff --git a/Almost line-speed file-copy using netcat.md b/Almost line-speed file-copy using netcat.md new file mode 100644 index 0000000..e13bf26 --- /dev/null +++ b/Almost line-speed file-copy using netcat.md @@ -0,0 +1,13 @@ +# Almost line-speed file-copy using netcat + +Receiving end: + +```shell +nc -l -p 9999 | tar xvfp - +``` + +Sender: + +```shell +tar cfp - /PATH/ | nc RECEIVER 9999 +``` \ No newline at end of file