<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: clear &gt;&gt; /etc/issue</title>
	<atom:link href="http://kmandla.wordpress.com/2009/06/21/clear-etcissue/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Painting with cadubi &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-40783</link>
		<dc:creator><![CDATA[Painting with cadubi &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Thu, 12 Nov 2009 13:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-40783</guid>
		<description><![CDATA[[...] written back out again, you can tack it on to your /etc/issue file, in a manner somewhat similar to this, and make your logins quite [...]]]></description>
		<content:encoded><![CDATA[<p>[...] written back out again, you can tack it on to your /etc/issue file, in a manner somewhat similar to this, and make your logins quite [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kaleb Elwert</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39857</link>
		<dc:creator><![CDATA[Kaleb Elwert]]></dc:creator>
		<pubDate>Tue, 14 Jul 2009 14:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39857</guid>
		<description><![CDATA[Same issue in Gentoo.

I love this file, though:
/etc/bash/bash_logout

That&#039;s where it is in Gentoo at least. I just add &quot;clear&quot; to the end and it works like a charm.]]></description>
		<content:encoded><![CDATA[<p>Same issue in Gentoo.</p>
<p>I love this file, though:<br />
/etc/bash/bash_logout</p>
<p>That&#8217;s where it is in Gentoo at least. I just add &#8220;clear&#8221; to the end and it works like a charm.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eirik</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39705</link>
		<dc:creator><![CDATA[Eirik]]></dc:creator>
		<pubDate>Wed, 24 Jun 2009 04:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39705</guid>
		<description><![CDATA[Hm,

I probably should have used &quot;tempfile&quot;, this being a public post:

 tf=$(tempfile); (clear; cat /etc/issue) &gt; $tf; mv $tf /etc/issue

Maybe the next generation of Linux users won&#039;t all be using insecure temporary files[1] now...

-e

[1]http://www.google.com/search?q=temporary+file+bug]]></description>
		<content:encoded><![CDATA[<p>Hm,</p>
<p>I probably should have used &#8220;tempfile&#8221;, this being a public post:</p>
<p> tf=$(tempfile); (clear; cat /etc/issue) &gt; $tf; mv $tf /etc/issue</p>
<p>Maybe the next generation of Linux users won&#8217;t all be using insecure temporary files[1] now&#8230;</p>
<p>-e</p>
<p>[1]http://www.google.com/search?q=temporary+file+bug</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eirik</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39702</link>
		<dc:creator><![CDATA[Eirik]]></dc:creator>
		<pubDate>Wed, 24 Jun 2009 04:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39702</guid>
		<description><![CDATA[Hm,

for those that don&#039;t have a completely empty /etc/issue, you might want to do the reverse, namely append clear to the top of /etc/issue.

I couldn&#039;t find any reasonable way append to the beginning of a file using only the shell, so:

(clear; cat /etc/issue) &gt; /tmp/issue; mv /tmp/issue /etc/issue

#Parenthesis needed to execute both clear, and cat in subshell, 
#and for single redirect to work. Equivalent to:
clear &gt;&gt; /tmp/issue
cat /etc/issue &gt;&gt; /tmp/issue
mv /tmp/issue /etc/issue

Using perl one could easily read the whole file, effectively using an anonymous buffer in ram as the temporary file.

-e]]></description>
		<content:encoded><![CDATA[<p>Hm,</p>
<p>for those that don&#8217;t have a completely empty /etc/issue, you might want to do the reverse, namely append clear to the top of /etc/issue.</p>
<p>I couldn&#8217;t find any reasonable way append to the beginning of a file using only the shell, so:</p>
<p>(clear; cat /etc/issue) &gt; /tmp/issue; mv /tmp/issue /etc/issue</p>
<p>#Parenthesis needed to execute both clear, and cat in subshell,<br />
#and for single redirect to work. Equivalent to:<br />
clear &gt;&gt; /tmp/issue<br />
cat /etc/issue &gt;&gt; /tmp/issue<br />
mv /tmp/issue /etc/issue</p>
<p>Using perl one could easily read the whole file, effectively using an anonymous buffer in ram as the temporary file.</p>
<p>-e</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39686</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Mon, 22 Jun 2009 00:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39686</guid>
		<description><![CDATA[I hadn&#039;t thought of that, but yes, that would be cool too.]]></description>
		<content:encoded><![CDATA[<p>I hadn&#8217;t thought of that, but yes, that would be cool too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39685</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Mon, 22 Jun 2009 00:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39685</guid>
		<description><![CDATA[If you do, please leave a link. I&#039;d be interested in seeing what you come up with.]]></description>
		<content:encoded><![CDATA[<p>If you do, please leave a link. I&#8217;d be interested in seeing what you come up with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39684</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Mon, 22 Jun 2009 00:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39684</guid>
		<description><![CDATA[Ah, that was supposed to be my own little joke. So much for being clever. :mrgreen:]]></description>
		<content:encoded><![CDATA[<p>Ah, that was supposed to be my own little joke. So much for being clever. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39683</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Mon, 22 Jun 2009 00:36:48 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39683</guid>
		<description><![CDATA[Interesting. Not exactly my style, but I could see adjusting it to suit me. ;)]]></description>
		<content:encoded><![CDATA[<p>Interesting. Not exactly my style, but I could see adjusting it to suit me. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ShiftPlusOne</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39680</link>
		<dc:creator><![CDATA[ShiftPlusOne]]></dc:creator>
		<pubDate>Sun, 21 Jun 2009 20:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39680</guid>
		<description><![CDATA[Nice! You could also use img2txt, which I think comes with libcaca, to customize /etc/issue.]]></description>
		<content:encoded><![CDATA[<p>Nice! You could also use img2txt, which I think comes with libcaca, to customize /etc/issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Colin Jones</title>
		<link>http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39679</link>
		<dc:creator><![CDATA[Colin Jones]]></dc:creator>
		<pubDate>Sun, 21 Jun 2009 19:30:29 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/06/21/clear-etcissue/#comment-39679</guid>
		<description><![CDATA[I actually do go overboard and put a pixel art image in my issue along with the name of the computer it&#039;s for. 
It makes a great alternative to GDM or even Slim and Quingy.

I was planning on writing a tutorial on how to do this too.]]></description>
		<content:encoded><![CDATA[<p>I actually do go overboard and put a pixel art image in my issue along with the name of the computer it&#8217;s for.<br />
It makes a great alternative to GDM or even Slim and Quingy.</p>
<p>I was planning on writing a tutorial on how to do this too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
