<?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>LINUX ADMINISTRATION NOTES &#38; CODE SNIPPETS &#187; Scripting</title>
	<atom:link href="http://linuxbloggers.org/category/scripting/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbloggers.org</link>
	<description>pTCsxunH</description>
	<lastBuildDate>Sun, 28 Feb 2010 18:43:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Execution of R program as a bash script</title>
		<link>http://linuxbloggers.org/execution-of-r-program-as-a-bash-script/</link>
		<comments>http://linuxbloggers.org/execution-of-r-program-as-a-bash-script/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 09:25:42 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://linuxbloggers.org/?p=99</guid>
		<description><![CDATA[Here is a simple example of bash script which executes R code within. Create a file called R.sh with the following content:

#!/bin/bash
R --no-save  rfunction(2,5)
[1] 7
>
]]></description>
		<wfw:commentRss>http://linuxbloggers.org/execution-of-r-program-as-a-bash-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display date-clock with simple bash command and while loop</title>
		<link>http://linuxbloggers.org/display-date-clock-with-simple-bash-command-and-while-loop/</link>
		<comments>http://linuxbloggers.org/display-date-clock-with-simple-bash-command-and-while-loop/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 22:25:55 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[command line]]></category>

		<guid isPermaLink="false">http://linuxconfig.wordpress.com/?p=113</guid>
		<description><![CDATA[Here is a simple example on how to display date/watch with simple bash command:

$ while true; do clear; date; sleep 1; done
]]></description>
		<wfw:commentRss>http://linuxbloggers.org/display-date-clock-with-simple-bash-command-and-while-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract STDERR and redirect STDOUT to /dev/null with bash</title>
		<link>http://linuxbloggers.org/extract-stderr-redirect-stdout-to-devnull-bash/</link>
		<comments>http://linuxbloggers.org/extract-stderr-redirect-stdout-to-devnull-bash/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:18:51 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[bash syntax]]></category>

		<guid isPermaLink="false">http://linuxconfig.wordpress.com/?p=102</guid>
		<description><![CDATA[I always keep forgetting this bash syntax redirection. This is because of my short memory and also because I do not use it often. In many cases we need to remove a STDERR from the command output and keep only STDOUT. On the other hand there are times that we want to see STDERR and [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/extract-stderr-redirect-stdout-to-devnull-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
