Sending files with wormhole

tools I didn’t know

Published May 19, 2021

tools, wormhole

I saw this tweet this morning:

I've heard of the other things, but what is magic wormhole? Its a way to send files from one computer to another using a magic phrase. The idea is that you are on the phone with someone, you send them a file, say a phrase over the phone, and they use that phrase to get the files to their computer.

Let's try it. On Debian:

1
sudo apt install magic-wormhole

Or OSX

1
brew install magic-wormhole

Sending a file

To send a file

1
2
3
4
5
6
7
8
9
  $ md5sum Anarchist\ Design\ Book.pdf
  bb30cdf2185d40cff0e269a954f05d8e  Anarchist Design Book.pdf

  $ wormhole send Anarchist\ Design\ Book.pdf
  Sending 26.7 MB file named 'Anarchist Design Book.pdf'
  Wormhole code is: 1-glossary-neptune
  On the other computer, please run:

  wormhole receive 1-glossary-neptune

Receiving a file

And then on the other side:

1
2
3
4
5
6
7
8
9
  $ wormhole receive 1-glossary-neptune
  Receiving file (26.7 MB) into: Anarchist Design Book.pdf
  ok? (y/N): y
  Receiving (<-209.133.79.248:9245)..
  100% 26.7M/26.7M [00:11<00:00, 2.27MB/s]
  Received file written to Anarchist Design Book.pdf

  $ md5sum Anarchist\ Design\ Book.pdf
  bb30cdf2185d40cff0e269a954f05d8e  Anarchist Design Book.pdf

Fast and easy, at least once you have it installed!

Previously

Controlling docker in golang So meta

2021-05-15

Next

Deploying OpenFaaS on Digital Ocean with Terraform Everything functional

2021-06-02

labnotes

Previously

Bootstrapping React with Tailwind as so I remember

2021-04-15

Next

Snowpack for fast builds react and tailwind too

2022-01-02