summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-01-03 10:08:10 +0000
committerPaul Buetow <paul@buetow.org>2022-01-03 10:08:10 +0000
commit57973b57b153e6688a3d7be654b00e03a17ac32b (patch)
tree387abaa21541dadfae6eabeef916aa85f2077efb
parent3814f467ad3ec0ba296570886e2c3bbd32eff24f (diff)
Publishing new version
-rw-r--r--gemfeed/atom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml
index ab96ca2c..ff4cfc4b 100644
--- a/gemfeed/atom.xml
+++ b/gemfeed/atom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
- <updated>2021-12-31T23:52:27+00:00</updated>
+ <updated>2022-01-03T10:07:32+00:00</updated>
<title>snonux.de feed</title>
<subtitle>Having fun with computers!</subtitle>
<link href="gemini://snonux.de/gemfeed/atom.xml" rel="self" />
@@ -59,7 +59,7 @@ Foo
</pre>
<p>Other useful redirections are:</p>
<ul>
-<li>Redirect stderr to stdin: "echo foo 2>&1"</li>
+<li>Redirect stderr to stdin: "echo foo 2&gt;&amp;1"</li>
<li>Redirect stdin to stderr: "echo foo &gt;&amp;2"</li>
</ul>
<p>It is, however, not possible to redirect multiple times within the same command. E.g. the following won't work. You would expect stdin to be redirected to stderr and then stderr to be redirected to /dev/null. But as the example shows, Foo is still printed out:</p>