<?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: Get groovy for better shell scripts</title>
	<atom:link href="http://eriwen.com/groovy/groovy-shell-scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://eriwen.com/groovy/groovy-shell-scripts/</link>
	<description>Programming productively with open-source tools</description>
	<lastBuildDate>Tue, 31 Jan 2012 12:49:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Eric Wendelin</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-6497</link>
		<dc:creator>Eric Wendelin</dc:creator>
		<pubDate>Tue, 19 Jul 2011 04:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-6497</guid>
		<description>Yeah, you can just use &lt;em&gt;“ruby script.rb”.execute()&lt;/em&gt; to execute anything available on the PATH.</description>
		<content:encoded><![CDATA[<p>Yeah, you can just use <em>“ruby script.rb”.execute()</em> to execute anything available on the PATH.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FeedHarbor &#187; Blog Archive &#187; Using groovy for scripting linux servers</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-6409</link>
		<dc:creator>FeedHarbor &#187; Blog Archive &#187; Using groovy for scripting linux servers</dc:creator>
		<pubDate>Mon, 27 Jun 2011 06:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-6409</guid>
		<description>[...] Eric Wendelin&#8217;s blog post is a great introduction to using groovy for shell script [...]</description>
		<content:encoded><![CDATA[<p>[...] Eric Wendelin&#8217;s blog post is a great introduction to using groovy for shell script [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: payal</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-5379</link>
		<dc:creator>payal</dc:creator>
		<pubDate>Mon, 17 Jan 2011 15:34:46 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-5379</guid>
		<description>Hey, nice post!
Could you please suggest if we can call a ruby script from a groovy script?
thanks!</description>
		<content:encoded><![CDATA[<p>Hey, nice post!<br />
Could you please suggest if we can call a ruby script from a groovy script?<br />
thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using groovy for scripting linux servers - tOMPSON&#8217;s blog</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-4125</link>
		<dc:creator>Using groovy for scripting linux servers - tOMPSON&#8217;s blog</dc:creator>
		<pubDate>Wed, 24 Nov 2010 13:12:49 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-4125</guid>
		<description>[...] Eric Wendelin&#8217;s blog post is a great introduction to using groovy for shell script [...]</description>
		<content:encoded><![CDATA[<p>[...] Eric Wendelin&#8217;s blog post is a great introduction to using groovy for shell script [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codecraig</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-2678</link>
		<dc:creator>codecraig</dc:creator>
		<pubDate>Wed, 01 Jul 2009 11:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-2678</guid>
		<description>How about accessing those Twitter URL&#039;s using HTTPS?</description>
		<content:encoded><![CDATA[<p>How about accessing those Twitter URL&#8217;s using HTTPS?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devdanke</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-2612</link>
		<dc:creator>devdanke</dc:creator>
		<pubDate>Sat, 30 May 2009 07:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-2612</guid>
		<description>well, i was playing around with a groovy shell script.  i&#039;m sure you&#039;ll agree, it&#039;s pretty sophisticated:

#!/bin/env groovy
println &quot;hey&quot;

my computer has a core 2 duo u9400 1.4 ghz cpu, 1 gb ram, win xp sp3, java 1.6.0_13, and groovy 1.6.3.

when i call it directly from the bash prompt it takes 10 seconds to run.  when i call it as an argument to groovy.bat, it takes 7 seconds.  

on the other hand, ruby ran it in less than 1 second and jruby ran it in 5 seconds.

groovy&#039;s 7-10 seconds performance is very slow and a big turn off compared to using other dynamic languages.  my sense is that groovy&#039;s start time is the problem.

does anyone have ideas on how to make groovy run shell scripts faster?</description>
		<content:encoded><![CDATA[<p>well, i was playing around with a groovy shell script.  i&#8217;m sure you&#8217;ll agree, it&#8217;s pretty sophisticated:</p>
<p>#!/bin/env groovy<br />
println &#8220;hey&#8221;</p>
<p>my computer has a core 2 duo u9400 1.4 ghz cpu, 1 gb ram, win xp sp3, java 1.6.0_13, and groovy 1.6.3.</p>
<p>when i call it directly from the bash prompt it takes 10 seconds to run.  when i call it as an argument to groovy.bat, it takes 7 seconds.  </p>
<p>on the other hand, ruby ran it in less than 1 second and jruby ran it in 5 seconds.</p>
<p>groovy&#8217;s 7-10 seconds performance is very slow and a big turn off compared to using other dynamic languages.  my sense is that groovy&#8217;s start time is the problem.</p>
<p>does anyone have ideas on how to make groovy run shell scripts faster?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Wendelin</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-2302</link>
		<dc:creator>Eric Wendelin</dc:creator>
		<pubDate>Fri, 03 Apr 2009 16:37:13 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-2302</guid>
		<description>Yes the XML handling is superb in Groovy :)</description>
		<content:encoded><![CDATA[<p>Yes the XML handling is superb in Groovy :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casey Watson</title>
		<link>http://eriwen.com/groovy/groovy-shell-scripts/#comment-2301</link>
		<dc:creator>Casey Watson</dc:creator>
		<pubDate>Fri, 03 Apr 2009 15:58:01 +0000</pubDate>
		<guid isPermaLink="false">http://eriwen.com/?p=495#comment-2301</guid>
		<description>Nice write-up Eric.

This is much more appealing that using awk and bash.</description>
		<content:encoded><![CDATA[<p>Nice write-up Eric.</p>
<p>This is much more appealing that using awk and bash.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

