<?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: Two-way conversion of Unix time (seconds since 1970) and regular time</title>
	<atom:link href="http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 06:51:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=4502</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jordan retro</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-482036</link>
		<dc:creator>jordan retro</dc:creator>
		<pubDate>Wed, 27 Apr 2011 22:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-482036</guid>
		<description>Great – I should definitely say I&#039;m impressed with your site. I had no trouble navigating through all tabs as well as related info.  It ended up being truly easy to access.  Good job.</description>
		<content:encoded><![CDATA[<p>Great – I should definitely say I&#8217;m impressed with your site. I had no trouble navigating through all tabs as well as related info.  It ended up being truly easy to access.  Good job.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: San Diego Local SEO</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-473975</link>
		<dc:creator>San Diego Local SEO</dc:creator>
		<pubDate>Sat, 23 Apr 2011 18:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-473975</guid>
		<description>Hiya. Very nice website!! Man .. Beautiful .. Superb .. I will bookmark your blog and take the feeds also...I&#039;m happy to locate a lot of useful info here in the article. Thank you for sharing...</description>
		<content:encoded><![CDATA[<p>Hiya. Very nice website!! Man .. Beautiful .. Superb .. I will bookmark your blog and take the feeds also&#8230;I&#8217;m happy to locate a lot of useful info here in the article. Thank you for sharing&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linda Walsh</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-462424</link>
		<dc:creator>Linda Walsh</dc:creator>
		<pubDate>Sun, 17 Apr 2011 20:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-462424</guid>
		<description>scriptify!  This will function as the &#039;date&#039; command, but with first param being the &quot;epoch seconds&quot; (allowing all the date command reformatting options):
---
#!/bin/bash
s=$1
shift
date -d @$s &quot;$@&quot;</description>
		<content:encoded><![CDATA[<p>scriptify!  This will function as the &#8216;date&#8217; command, but with first param being the &#8220;epoch seconds&#8221; (allowing all the date command reformatting options):<br />
&#8212;<br />
#!/bin/bash<br />
s=$1<br />
shift<br />
date -d @$s &#8220;$@&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Borko Jankovic</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-67500</link>
		<dc:creator>Borko Jankovic</dc:creator>
		<pubDate>Mon, 22 Feb 2010 15:39:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-67500</guid>
		<description>Daj Ivane nemoj da kenjas!!! :)</description>
		<content:encoded><![CDATA[<p>Daj Ivane nemoj da kenjas!!! <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaos</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-45828</link>
		<dc:creator>Chaos</dc:creator>
		<pubDate>Tue, 20 Oct 2009 16:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-45828</guid>
		<description>date +%s gives you unix-time
date -d @123456890 converts back.

simple way to test
date -d @$(date +%s) (this basicaly takes the output from &quot;date +%s&quot; as input for &quot;date -d@&quot; and thus should print the current time in human readable form)</description>
		<content:encoded><![CDATA[<p>date +%s gives you unix-time<br />
date -d @123456890 converts back.</p>
<p>simple way to test<br />
date -d @$(date +%s) (this basicaly takes the output from &#8220;date +%s&#8221; as input for &#8220;date -d@&#8221; and thus should print the current time in human readable form)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Shields</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-41095</link>
		<dc:creator>Matt Shields</dc:creator>
		<pubDate>Fri, 07 Aug 2009 17:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-41095</guid>
		<description>Perfect.  That saved me a bunch of time reading through the man pages. :)</description>
		<content:encoded><![CDATA[<p>Perfect.  That saved me a bunch of time reading through the man pages. <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zsuffad</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-40953</link>
		<dc:creator>zsuffad</dc:creator>
		<pubDate>Wed, 05 Aug 2009 12:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-40953</guid>
		<description>date -d @1249474436 works fine on archlinux, output:
Wed Aug  5 14:13:56 CEST 2009
---------------
thx for the tip</description>
		<content:encoded><![CDATA[<p>date -d @1249474436 works fine on archlinux, output:<br />
Wed Aug  5 14:13:56 CEST 2009<br />
&#8212;&#8212;&#8212;&#8212;&#8212;<br />
thx for the tip</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris Loranger</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-23577</link>
		<dc:creator>Kris Loranger</dc:creator>
		<pubDate>Mon, 18 Aug 2008 15:53:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-23577</guid>
		<description>Mac OSX unix time stamp conversion is same as BSD
date -r 1219073151</description>
		<content:encoded><![CDATA[<p>Mac OSX unix time stamp conversion is same as BSD<br />
date -r 1219073151</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-4402</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 13 Mar 2008 01:17:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-4402</guid>
		<description>anyone care to take a crack at it for the Mac OSX? (i.e., the above commands all do not work on the Mac).</description>
		<content:encoded><![CDATA[<p>anyone care to take a crack at it for the Mac OSX? (i.e., the above commands all do not work on the Mac).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deven Verma</title>
		<link>http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/comment-page-1/#comment-4018</link>
		<dc:creator>Deven Verma</dc:creator>
		<pubDate>Fri, 07 Mar 2008 09:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2007/09/04/two-way-conversion-of-unix-time-seconds-since-1970-and-regular-time/#comment-4018</guid>
		<description>Thanks. Solved my problem. On slackware, date -u --date=&quot;.... works, not date -d @...</description>
		<content:encoded><![CDATA[<p>Thanks. Solved my problem. On slackware, date -u &#8211;date=&#8221;&#8230;. works, not date -d @&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

