<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tail -f /dev/null &#187; echo</title>
	<atom:link href="http://tfdn.radiofreeomaha.net/tag/echo/feed/" rel="self" type="application/rss+xml" />
	<link>http://tfdn.radiofreeomaha.net</link>
	<description>Tips, notes, HOWTOs</description>
	<lastBuildDate>Fri, 20 Aug 2010 04:13:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Set The Window/XTerm Title</title>
		<link>http://tfdn.radiofreeomaha.net/2009/01/how-to-set-the-windowxterm-title/</link>
		<comments>http://tfdn.radiofreeomaha.net/2009/01/how-to-set-the-windowxterm-title/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 16:52:06 +0000</pubDate>
		<dc:creator>Uncle Jubba</dc:creator>
				<category><![CDATA[CLI]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[xterm]]></category>

		<guid isPermaLink="false">http://tfdn.radiofreeomaha.net/?p=54</guid>
		<description><![CDATA[I find it useful to set the window title of my terminals for long running processes so I can see at a glace what is happening in the window or where in the process running in that window is at.  In scripts I will use the following: echo &#34;\033]0;Window for ${USER}\007&#34; Of course replace &#8220;Window [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I find it useful to set the window title of my terminals for long running processes so I can see at a glace what is happening in the window or where in the process running in that window is at.  In scripts I will use the following:</p>
<pre class="brush: bash">echo &quot;\033]0;Window for ${USER}\007&quot;</pre>
<p>Of course replace &#8220;Window for ${USER}&#8221; with whatever is appropriate for your use.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tfdn.radiofreeomaha.net/2009/01/how-to-set-the-windowxterm-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remembering The Shell&#8217;s Special Variables</title>
		<link>http://tfdn.radiofreeomaha.net/2008/12/remembering-the-shells-special-variables/</link>
		<comments>http://tfdn.radiofreeomaha.net/2008/12/remembering-the-shells-special-variables/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 21:44:00 +0000</pubDate>
		<dc:creator>Uncle Jubba</dc:creator>
				<category><![CDATA[CLI]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://tfdn.radiofreeomaha.net/?p=45</guid>
		<description><![CDATA[I can never seem to remember what all of these default parameter variables are.  I found this small shell script that prints them out when I forget. #!/bin/sh -vx ####################################################### # example_1.1 (c) R.H.Reepe 1996 March 28 Version 1.0 # ####################################################### echo &#34;Script name is [$0]&#34; echo &#34;First Parameter is [$1]&#34; echo &#34;Second Parameter is [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>I can never seem to remember what all of these default parameter variables are.  I found this small shell script that prints them out when I forget.</p>
<pre>
<pre class="brush: bash">#!/bin/sh -vx
#######################################################
# example_1.1 (c) R.H.Reepe 1996 March 28 Version 1.0 #
#######################################################
echo &quot;Script name is            [$0]&quot;
echo &quot;First Parameter is                [$1]&quot;
echo &quot;Second Parameter is               [$2]&quot;
echo &quot;This Process ID is                [$$]&quot;
echo &quot;This Parameter Count is   [$#]&quot;
echo &quot;All Parameters            [$@]&quot;
echo &quot;The FLAGS are                     [$-]&quot;</pre>
<p>It produces output like this:</p>
<pre>
<pre class="brush: bash">#!/bin/sh -vx
#######################################################
# example_1.1 (c) R.H.Reepe 1996 March 28 Version 1.0 #
#######################################################
echo &quot;Script name is            [$0]&quot;
+ echo &#039;Script name is            [/home/me/bin/shellhelp]&#039;
Script name is            [/home/me/bin/shellhelp]
echo &quot;First Parameter is                [$1]&quot;
+ echo &#039;First Parameter is                []&#039;
First Parameter is                []
echo &quot;Second Parameter is               [$2]&quot;
+ echo &#039;Second Parameter is               []&#039;
Second Parameter is               []
echo &quot;This Process ID is                [$$]&quot;
+ echo &#039;This Process ID is                [15190]&#039;
This Process ID is                [15190]
echo &quot;This Parameter Count is   [$#]&quot;
+ echo &#039;This Parameter Count is   [0]&#039;
This Parameter Count is   [0]
echo &quot;All Parameters            [$@]&quot;
+ echo &#039;All Parameters            []&#039;
All Parameters            []
echo &quot;The FLAGS are                     [$-]&quot;
+ echo &#039;The FLAGS are                     [hvxB]&#039;
The FLAGS are                     [hvxB]</pre>
<p>via <a href="http://www.injunea.demon.co.uk/pages/page204.htm" target="_blank">Richard&#8217;s Unix Shell Scripting Universe</a></p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tfdn.radiofreeomaha.net/2008/12/remembering-the-shells-special-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

