shoop icon indicating copy to clipboard operation
shoop copied to clipboard

While preparing to port my netcat/tar shell combo to shoop, I noticed…

Open dmgolembiowski opened this issue 4 years ago • 1 comments

… it didn't support non-standard port options (outside of 22), so I sprinkled some in.

dmgolembiowski avatar Aug 26 '21 06:08 dmgolembiowski

This week/weekend, I'd like to address the one feature request related to sending files from local (rather than from the server) using the basis for how I currently transfer files quickly:

# On the server
nc -q 1 -l -p <ssh port> | tar xv

and

# On the client
tar cv . | nc -q 1 <destination> <ssh port>

With it, I currently see around 110Mb/s in upload speeds, and think this can be juiced up quite a bit with shoop's multi-port transfer and split-file connection chunking (in axel style).

dmgolembiowski avatar Aug 26 '21 06:08 dmgolembiowski