Website snapshot

This commit is contained in:
Brandon Rozek 2020-01-15 21:51:49 -05:00
parent ee0ab66d73
commit 50ec3688a5
281 changed files with 21066 additions and 0 deletions

23
content/blog/wormhole.md Normal file
View file

@ -0,0 +1,23 @@
---
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.