From: W. Trevor King Date: Sat, 18 Jun 2011 21:55:46 +0000 (-0400) Subject: Remove duplicate $ in simple servers post. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4819be7d3f845ff30e093b1f1297b952eb86d728;p=blog.git Remove duplicate $ in simple servers post. --- diff --git a/posts/Simple_servers.mdwn b/posts/Simple_servers.mdwn index 669b2fa..d1a1714 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 tyr; do :; done The `:` is Bash's noop.