mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-10 03:00:35 -05:00
23 lines
554 B
Markdown
23 lines
554 B
Markdown
---
|
|
title: "Wormhole"
|
|
date: 2019-11-20T21:21:23-05:00
|
|
draft: false
|
|
---
|
|
|
|
A dead simple way to send files between two linux machines not on the same network is to use a utility called [Magic Wormhole](https://github.com/warner/magic-wormhole). It is typically included in the standard repositories and is so simple the this blog post is going to end soon.
|
|
|
|
**Send a file:**
|
|
|
|
```bash
|
|
wormhole send filename
|
|
```
|
|
|
|
This will generate a code for you to share like `6-speculate-allow`
|
|
|
|
**Receive a file:**
|
|
|
|
```bash
|
|
wormhole receive 6-speculate-allow
|
|
```
|
|
|
|
Done.
|