<?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>newline | /var/logs/paulooi.log</title>
	<atom:link href="https://logs.paulooi.com/tag/newline/feed" rel="self" type="application/rss+xml" />
	<link>https://logs.paulooi.com</link>
	<description>Systems Admin, Web Development and etc</description>
	<lastBuildDate>Mon, 24 Jan 2011 12:54:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Bash: How to Echo Tab and Newline</title>
		<link>https://logs.paulooi.com/bash-how-to-echo-tab-and-newline.php</link>
					<comments>https://logs.paulooi.com/bash-how-to-echo-tab-and-newline.php#respond</comments>
		
		<dc:creator><![CDATA[Paul Ooi]]></dc:creator>
		<pubDate>Mon, 24 Jan 2011 08:31:50 +0000</pubDate>
				<category><![CDATA[Systems]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bash programming]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[newline]]></category>
		<category><![CDATA[print result]]></category>
		<category><![CDATA[tab space]]></category>
		<guid isPermaLink="false">http://systems.takizo.com/?p=1135</guid>

					<description><![CDATA[<p>While printing out result in bash, sometime we need to echo tab or newline for nice, gorgeous, maning looking format. The code below will NOT print tab space and newline echo "username\t password\n" In order to print tab and newline,...</p>
The post <a href="https://logs.paulooi.com/bash-how-to-echo-tab-and-newline.php">Bash: How to Echo Tab and Newline</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></description>
										<content:encoded><![CDATA[<p>While printing out result in bash, sometime we need to echo tab or newline for nice, gorgeous, maning looking format. The code below will NOT print tab space and newline</p>
<pre><code>
echo "username\t password\n"
</code>
</pre>
<p>In order to print tab and newline, invoke -e in the echo command</p>
<pre><code>
ehco -e "username\t\t password\n"
</code>
</pre>The post <a href="https://logs.paulooi.com/bash-how-to-echo-tab-and-newline.php">Bash: How to Echo Tab and Newline</a> first appeared on <a href="https://logs.paulooi.com">/var/logs/paulooi.log</a>.]]></content:encoded>
					
					<wfw:commentRss>https://logs.paulooi.com/bash-how-to-echo-tab-and-newline.php/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
