<?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>Lev Shuvalov&#160; &#187; bash</title>
	<atom:link href="http://shuvalov.com/tag/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://shuvalov.com</link>
	<description>system administrator</description>
	<lastBuildDate>Mon, 10 Oct 2011 17:31:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>the first script on a fresh box to remove experts-exchange.com</title>
		<link>http://shuvalov.com/ubuntu-remove-experts-exchange-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ubuntu-remove-experts-exchange-com</link>
		<comments>http://shuvalov.com/ubuntu-remove-experts-exchange-com/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 17:31:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://shuvalov.com/?p=700</guid>
		<description><![CDATA[I don&#8217;t know why I hate the experts-exchange.com I just cannot help it cp /etc/hosts /etc/hosts-`date +"%y%m%d"` echo "127.0.0.1 experts-exchange.com www.experts-exchange.com" >> /etc/hosts]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know why I hate the experts-exchange.com I just cannot help it <img src='http://shuvalov.com/system-administrator/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><code><br />
cp /etc/hosts /etc/hosts-`date +"%y%m%d"`<br />
echo "127.0.0.1 experts-exchange.com www.experts-exchange.com" >> /etc/hosts<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://shuvalov.com/ubuntu-remove-experts-exchange-com/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>remove ^M, conver end of sting from dos to unix</title>
		<link>http://shuvalov.com/remove-m-conver-end-of-sting-from-dos-to-unix/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=remove-m-conver-end-of-sting-from-dos-to-unix</link>
		<comments>http://shuvalov.com/remove-m-conver-end-of-sting-from-dos-to-unix/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 13:08:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://administrator-system.com/system-administrator/?p=106</guid>
		<description><![CDATA[cat input_filename &#124; sed 's/r//' &#62; output_filename]]></description>
			<content:encoded><![CDATA[<p><code><br />
cat input_filename | sed 's/r//' &gt; output_filename<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://shuvalov.com/remove-m-conver-end-of-sting-from-dos-to-unix/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>extracting a substring</title>
		<link>http://shuvalov.com/extracting-a-substring/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=extracting-a-substring</link>
		<comments>http://shuvalov.com/extracting-a-substring/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:45:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://administrator-system.com/system-administrator/?p=110</guid>
		<description><![CDATA[substring=`cat a.txt &#124; cut -f2 -d :`]]></description>
			<content:encoded><![CDATA[<p><code>substring=`cat a.txt | cut -f2 -d :`</code></p>
]]></content:encoded>
			<wfw:commentRss>http://shuvalov.com/extracting-a-substring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>commenting out a block of bash code</title>
		<link>http://shuvalov.com/commenting-out-a-block-of-bash-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=commenting-out-a-block-of-bash-code</link>
		<comments>http://shuvalov.com/commenting-out-a-block-of-bash-code/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 06:32:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cli]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://administrator-system.com/system-administrator/?p=104</guid>
		<description><![CDATA[#!/bin/bash : &#60;&#60; COMMENTBLOCK echo "This line will not echo because the Bash interpreter will ignore it." COMMENTBLOCK]]></description>
			<content:encoded><![CDATA[<pre>
#!/bin/bash
:  &lt;&lt; COMMENTBLOCK
  echo "This line will not echo because the Bash interpreter will ignore it."
COMMENTBLOCK
</pre>
]]></content:encoded>
			<wfw:commentRss>http://shuvalov.com/commenting-out-a-block-of-bash-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

