From 33f1f213a304ac8d19ecb5c38e9cde8f33a39356 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 14 Jul 2022 14:28:39 -0400 Subject: Update README.md Make -c example consistent with previous example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8ce34d..9758a97 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Oops, you forgot about that web server test. 8080 is already bound so you're giv Let's say you have closed your laptop and lost all of your connections. If you can remember the remote port you used then `-c` will get you up and running in no time... ``` -$ jupyter_safe_port example.lan -c 8080 +$ jupyter_safe_port example.lan -c 8081 Connect via: -ssh -N -f -L1024:localhost:8080 user@example.lan +ssh -N -f -L1024:localhost:8081 user@example.lan ``` -- cgit