From bee7f5a4c4104c98fce0913d15d6a81b0dfbcdfa Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 3 Aug 2011 06:59:38 -0400 Subject: [PATCH] Standardize example hostname in simple-server post. --- posts/Simple_servers.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/Simple_servers.mdwn b/posts/Simple_servers.mdwn index d1a1714..598e498 100644 --- a/posts/Simple_servers.mdwn +++ b/posts/Simple_servers.mdwn @@ -15,7 +15,7 @@ The `-q 1` tells netcat to quit after an EOF is detected. When the client quits, the connection breaks, and the server goes down on its own. If you want netcat to stay up you'll have to restart it: - $ while nc -l -p 8080 tyr; do :; done + $ while nc -l -p 8080 a.example.net; do :; done The `:` is Bash's noop. -- 2.26.2