<?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/"
	
	>
<channel>
	<title>
	Comments on: How to Convert CSV File to TSV File in Linux	</title>
	<atom:link href="https://www.tecmint.com/convert-csv-to-tsv/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/convert-csv-to-tsv/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 14 Jul 2023 05:45:37 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Lex		</title>
		<link>https://www.tecmint.com/convert-csv-to-tsv/comment-page-1/#comment-2026981</link>

		<dc:creator><![CDATA[Lex]]></dc:creator>
		<pubDate>Fri, 16 Jun 2023 13:09:08 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=51802#comment-2026981</guid>

					<description><![CDATA[Hey Ravi, thank you for your article.

I believe there missed the most simple way to resolve the topic.

You can just use `&lt;strong&gt;tr &quot;,&quot; &quot;\t&lt;/strong&gt;&quot;`. 

For example:
&lt;pre&gt;
$ echo &#039;one,two,three&#039; &#124; tr &quot;,&quot; &quot;\t&quot;
&lt;/pre&gt;
Does it make sense for you?]]></description>
			<content:encoded><![CDATA[<p>Hey Ravi, thank you for your article.</p>
<p>I believe there missed the most simple way to resolve the topic.</p>
<p>You can just use `<strong>tr &#8220;,&#8221; &#8220;\t</strong>&#8220;`. </p>
<p>For example:</p>
<pre>
$ echo 'one,two,three' | tr "," "\t"
</pre>
<p>Does it make sense for you?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/convert-csv-to-tsv/comment-page-1/#comment-2026924</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 16 Jun 2023 06:37:37 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=51802#comment-2026924</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/convert-csv-to-tsv/comment-page-1/#comment-2026836&quot;&gt;NoWay&lt;/a&gt;.

@Jose,

To separate the data fields of a CSV file into a TSV (Tab-Separated Values) format using the following awk command. 
&lt;pre&gt;
$ awk &#039;BEGIN { FS=&quot;,&quot;; OFS=&quot;\t&quot; } { print $1, $2, $3, $4 }&#039; tecmint.csv &#062; tecmint.tsv
&lt;/pre&gt;
This command assumes that your input file is named &lt;strong&gt;tecmint.csv&lt;/strong&gt;, and the resulting TSV file will be named &lt;strong&gt;tecmint.tsv&lt;/strong&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/convert-csv-to-tsv/comment-page-1/#comment-2026836">NoWay</a>.</p>
<p>@Jose,</p>
<p>To separate the data fields of a CSV file into a TSV (Tab-Separated Values) format using the following awk command. </p>
<pre>
$ awk 'BEGIN { FS=","; OFS="\t" } { print $1, $2, $3, $4 }' tecmint.csv &gt; tecmint.tsv
</pre>
<p>This command assumes that your input file is named <strong>tecmint.csv</strong>, and the resulting TSV file will be named <strong>tecmint.tsv</strong>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NoWay		</title>
		<link>https://www.tecmint.com/convert-csv-to-tsv/comment-page-1/#comment-2026836</link>

		<dc:creator><![CDATA[NoWay]]></dc:creator>
		<pubDate>Thu, 15 Jun 2023 21:51:38 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=51802#comment-2026836</guid>

					<description><![CDATA[Simple conversions, but it doesn&#039;t solve the problem mentioned at the beginning of the article.

&quot;While CSV files separate values with commas, TSV files use tabs, which can make data handling easier, especially when dealing with commas within the data itself.&quot;

These methods will convert all commas to tabs, not just the ones that separate the data fields.]]></description>
			<content:encoded><![CDATA[<p>Simple conversions, but it doesn&#8217;t solve the problem mentioned at the beginning of the article.</p>
<p>&#8220;While CSV files separate values with commas, TSV files use tabs, which can make data handling easier, especially when dealing with commas within the data itself.&#8221;</p>
<p>These methods will convert all commas to tabs, not just the ones that separate the data fields.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
