shoop
shoop copied to clipboard
While preparing to port my netcat/tar shell combo to shoop, I noticed…
… it didn't support non-standard port options (outside of 22), so I sprinkled some in.
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).