Skip to content

Instantly share code, notes, and snippets.

@rkravchik
Last active September 20, 2017 09:05
Show Gist options
  • Save rkravchik/1e9d482135fa5faf8bac5ed2b3d71310 to your computer and use it in GitHub Desktop.
Save rkravchik/1e9d482135fa5faf8bac5ed2b3d71310 to your computer and use it in GitHub Desktop.
Files stream pipe between machines
# Recieving machine
nc -l <port> | tar -xvf -
# Sending machine
tar -cf - . | nc <host> <port>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment