From: W. Trevor King Date: Wed, 3 Aug 2011 10:59:38 +0000 (-0400) Subject: Standardize example hostname in simple-server post. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bee7f5a4c4104c98fce0913d15d6a81b0dfbcdfa;p=blog.git Standardize example hostname in simple-server post. --- 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.