<?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>Software development &#124; VR Software &#187; ubuntu</title>
	<atom:link href="http://vrsoftware.biz/tag/ubuntu-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://vrsoftware.biz</link>
	<description>Web based application development</description>
	<lastBuildDate>Fri, 10 Oct 2014 18:32:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Scheduling cronjobs in Ubuntu</title>
		<link>http://vrsoftware.biz/scheduling-cronjobs-in-ubuntu/</link>
		<comments>http://vrsoftware.biz/scheduling-cronjobs-in-ubuntu/#comments</comments>
		<pubDate>Wed, 21 Nov 2012 12:11:36 +0000</pubDate>
		<dc:creator><![CDATA[VR Software]]></dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[cronjob]]></category>
		<category><![CDATA[crontab]]></category>
		<category><![CDATA[linx]]></category>
		<category><![CDATA[schedule job]]></category>
		<category><![CDATA[scheduling]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unison]]></category>

		<guid isPermaLink="false">http://vrsoftware.biz/?p=124</guid>
		<description><![CDATA[Create a text file in your /home folder called &#8220;cronjobs.txt&#8221; Open it and add a line for each job you want to run: 0 * * * * /usr/bin/unison 0 */5 * * * /usr/bin/cleanup The first line will run<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://vrsoftware.biz/scheduling-cronjobs-in-ubuntu/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
				<content:encoded><![CDATA[<p>Create a text file in your /home folder called &#8220;cronjobs.txt&#8221;</p>
<p>Open it and add a line for each job you want to run:<br />
<code><br />
0 * * * * /usr/bin/unison<br />
0 */5 * * * /usr/bin/cleanup<br />
</code><br />
The first line will run unison every hour, while the second line will run a process called cleanup every 5 hours.</p>
<p>After saving the file run<br />
<code><br />
crontab -u USERNAME cronjobs.txt<br />
</code><br />
where USERNAME is your username.</p>
<p>You can verify that the cronjob is added successfully by running:<br />
<code><br />
crontab -l<br />
</code></p>
<p>Each line is the cronjob file has the following syntax:<br />
<code><br />
minutes(0-59) hours(0-23) day(0-27/28/29/30) month(0-11) weekday(0-6) command<br />
</code><br />
A star for any of the above means any, so 0 * * * *  means every hour of every day on minute 0, which is an hourly job</p>
<p>*/5 means every fifth, */2 every second etc, so */5 * * * * would mean every 5th minute of every hour of every day, which is a job that repeats every five minutes.</p>
]]></content:encoded>
			<wfw:commentRss>http://vrsoftware.biz/scheduling-cronjobs-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
