<?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: Cron Tutorial &#8211; Managing cron tab or cron job is Easy!</title>
	<atom:link href="http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/</link>
	<description>Blog Dedicated To Internet Marketing!</description>
	<lastBuildDate>Wed, 03 Mar 2010 06:09:27 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jue&#39;s Blog &#187; Using Gmail to send / receive emails on a different account (super complicated version)</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4287</link>
		<dc:creator>Jue&#39;s Blog &#187; Using Gmail to send / receive emails on a different account (super complicated version)</dc:creator>
		<pubDate>Fri, 26 Feb 2010 04:45:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4287</guid>
		<description>[...] email every 10 minutes (provided the script itself isn&#8217;t having trouble sending mail). This tutorial on cron and this more detailed documentation can explain what these steps all mean, and tell you how to [...]</description>
		<content:encoded><![CDATA[<p>[...] email every 10 minutes (provided the script itself isn&#8217;t having trouble sending mail). This tutorial on cron and this more detailed documentation can explain what these steps all mean, and tell you how to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dama</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4286</link>
		<dc:creator>Dama</dc:creator>
		<pubDate>Mon, 22 Feb 2010 22:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4286</guid>
		<description>Worked for me..Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Worked for me..Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adbox</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4283</link>
		<dc:creator>adbox</dc:creator>
		<pubDate>Sat, 30 Jan 2010 21:18:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4283</guid>
		<description>This might be a service you are interested in: http://www.cronwatch.com .  This service lets you manage crons externally. very easy.</description>
		<content:encoded><![CDATA[<p>This might be a service you are interested in: <a href="http://www.cronwatch.com" rel="nofollow">http://www.cronwatch.com</a> .  This service lets you manage crons externally. very easy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalin Mandaliev</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4281</link>
		<dc:creator>Kalin Mandaliev</dc:creator>
		<pubDate>Sun, 24 Jan 2010 23:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4281</guid>
		<description>Linux was bulit mainly with the C programming language.
In the C programming language a program has three data streams which can be handled separately :
The greater-than (&gt;) in commands like these redirect the program’s output somewhere. In this case, something is being redirected into /dev/null, and something is being redirected into &amp;1.
0 means STDIN (STandarD INput) which is usually the keyboard;
1 means STDOUT (STandarD OUTput) which is the monitor;
2 means STDERR (STandarD ERRor) which is usually also the monitor by default.
A program e.g. X by default prints it’s output to STDOUT, to the monitor.
In the “X &gt;/dev/null 2&gt;&amp;1″ statement, the first part “X &gt;/dev/null” redirects X’s output from STDOUT to the /dev/null file which is something like a “bottomless hole” in Linux. What goes there never comes back.
But X’s STDERR isn’t redirected yet so X’s error messages will still be printed to the monitor.
The last part of the statement “2&gt;&amp;1″ redirects the STDERR (2) to STDOUT (1) which is already redircted to /dev/null.
So none of them prints to the monitor any more.
(We have to add the “&amp;” sign before the number 1 otherwise STDERR (2) would be redirected to a simple file called 1 in the same directory instead of STDOUT.)
That&#039;s it !
Best Regards,
Kalin Mandaliev</description>
		<content:encoded><![CDATA[<p>Linux was bulit mainly with the C programming language.<br />
In the C programming language a program has three data streams which can be handled separately :<br />
The greater-than (&gt;) in commands like these redirect the program’s output somewhere. In this case, something is being redirected into /dev/null, and something is being redirected into &amp;1.<br />
0 means STDIN (STandarD INput) which is usually the keyboard;<br />
1 means STDOUT (STandarD OUTput) which is the monitor;<br />
2 means STDERR (STandarD ERRor) which is usually also the monitor by default.<br />
A program e.g. X by default prints it’s output to STDOUT, to the monitor.<br />
In the “X &gt;/dev/null 2&gt;&amp;1″ statement, the first part “X &gt;/dev/null” redirects X’s output from STDOUT to the /dev/null file which is something like a “bottomless hole” in Linux. What goes there never comes back.<br />
But X’s STDERR isn’t redirected yet so X’s error messages will still be printed to the monitor.<br />
The last part of the statement “2&gt;&amp;1″ redirects the STDERR (2) to STDOUT (1) which is already redircted to /dev/null.<br />
So none of them prints to the monitor any more.<br />
(We have to add the “&amp;” sign before the number 1 otherwise STDERR (2) would be redirected to a simple file called 1 in the same directory instead of STDOUT.)<br />
That&#8217;s it !<br />
Best Regards,<br />
Kalin Mandaliev</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Petia</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4279</link>
		<dc:creator>Petia</dc:creator>
		<pubDate>Sat, 23 Jan 2010 23:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4279</guid>
		<description>Hey guys, could you tell me, what does it mean this 2&gt;&amp;1. This is the second part of &gt;/dev/null 2&gt;&amp;1. Till  &gt;/dev/null is ok and i understand, but after this i really don&#039;t know....Thanks in advance !</description>
		<content:encoded><![CDATA[<p>Hey guys, could you tell me, what does it mean this 2&gt;&amp;1. This is the second part of &gt;/dev/null 2&gt;&amp;1. Till  &gt;/dev/null is ok and i understand, but after this i really don&#8217;t know&#8230;.Thanks in advance !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sridhar</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4277</link>
		<dc:creator>Sridhar</dc:creator>
		<pubDate>Fri, 15 Jan 2010 15:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4277</guid>
		<description>How to create a cron job that runs on the last day of every month (considering that there could be 28, 29, 30 or 31 days in a month)?

Thanks,
Sridhar</description>
		<content:encoded><![CDATA[<p>How to create a cron job that runs on the last day of every month (considering that there could be 28, 29, 30 or 31 days in a month)?</p>
<p>Thanks,<br />
Sridhar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4276</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 14 Jan 2010 15:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4276</guid>
		<description>Hello,

I am developing an ASP.NET script and I need to set up some scheduling like sending email if the members has not uploaded some data and so on. Or to make changes in MY SQL at regular interval.

Now I know that things like this can be done with CRON but I am not very sure how to make it happen with ASP.NET. Your article is highly helpful and I was just expecting if you could help me a little with ASP.Net

Thank you, - David</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am developing an ASP.NET script and I need to set up some scheduling like sending email if the members has not uploaded some data and so on. Or to make changes in MY SQL at regular interval.</p>
<p>Now I know that things like this can be done with CRON but I am not very sure how to make it happen with ASP.NET. Your article is highly helpful and I was just expecting if you could help me a little with ASP.Net</p>
<p>Thank you, &#8211; David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webmasters-central.com</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4273</link>
		<dc:creator>Webmasters-central.com</dc:creator>
		<pubDate>Fri, 08 Jan 2010 23:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4273</guid>
		<description>@Farook:
It could be your host settings. Ask your host to comment on this new file creation. Or check other cron jobs of yours to see any of them are set to create backups of a php file.</description>
		<content:encoded><![CDATA[<p>@Farook:<br />
It could be your host settings. Ask your host to comment on this new file creation. Or check other cron jobs of yours to see any of them are set to create backups of a php file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Farook</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-4272</link>
		<dc:creator>Farook</dc:creator>
		<pubDate>Fri, 08 Jan 2010 13:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-4272</guid>
		<description>My Cron Script is working fine. And i used &gt;/dev/null 2&gt;&amp;1 to Stop sending Emails. But each time a file is created in the same name of PHP file with trailing numbers like phpfile.php.1, phpfle.php.2, phpfile.php.3....
Is there any script to stop that?</description>
		<content:encoded><![CDATA[<p>My Cron Script is working fine. And i used &gt;/dev/null 2&gt;&amp;1 to Stop sending Emails. But each time a file is created in the same name of PHP file with trailing numbers like phpfile.php.1, phpfle.php.2, phpfile.php.3&#8230;.<br />
Is there any script to stop that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manoa Tbakau</title>
		<link>http://www.webmasters-central.com/article-blog/tutorials/cron-tutorial-managing-cron-tab-or-cron-job-is-easy/comment-page-1/#comment-3946</link>
		<dc:creator>Manoa Tbakau</dc:creator>
		<pubDate>Mon, 07 Dec 2009 01:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmasters-central.com/article-blog/?p=164#comment-3946</guid>
		<description>What is the possibility for the script to be automated and at the same time be told that only when there is an Input Data, script should be executed. Like a check to be made before the script is executed.</description>
		<content:encoded><![CDATA[<p>What is the possibility for the script to be automated and at the same time be told that only when there is an Input Data, script should be executed. Like a check to be made before the script is executed.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
