<?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: Writing a Basic Ubuntu Script</title>
	<atom:link href="http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html</link>
	<description>Business, Marketing, Technology, Projects and More</description>
	<lastBuildDate>Mon, 26 Dec 2011 10:30:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: rasool maleki</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-86354</link>
		<dc:creator>rasool maleki</dc:creator>
		<pubDate>Tue, 26 Jul 2011 04:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-86354</guid>
		<description>Thanks a lot</description>
		<content:encoded><![CDATA[<p>Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-69921</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Wed, 18 May 2011 05:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-69921</guid>
		<description>thanks i managed to make a script to install codeblocks
then run it :)</description>
		<content:encoded><![CDATA[<p>thanks i managed to make a script to install codeblocks<br />
then run it <img src='http://www.ax697.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rossi</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-59361</link>
		<dc:creator>rossi</dc:creator>
		<pubDate>Fri, 24 Dec 2010 12:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-59361</guid>
		<description>Good introduction. I am migrating from Dos .bat to Ubuntu, it helped me getting started.
Some of the comments show why it&#039;s difficult to get easy solutions in the diverse world of Unix. A lot of Unix insiders assume you have to get to their level of understanding first, before you might do anything useful.</description>
		<content:encoded><![CDATA[<p>Good introduction. I am migrating from Dos .bat to Ubuntu, it helped me getting started.<br />
Some of the comments show why it&#8217;s difficult to get easy solutions in the diverse world of Unix. A lot of Unix insiders assume you have to get to their level of understanding first, before you might do anything useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grandfather Time</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-58289</link>
		<dc:creator>Grandfather Time</dc:creator>
		<pubDate>Thu, 18 Nov 2010 14:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-58289</guid>
		<description>Sergey, your problem is that you are not running the script from the terminal, you are simply opening a text file....

If you are using Ubuntu you need to click Applications --&gt; Accessories --&gt; Terminal

Now that your terminal is open, type: 
chmod 755 samplescript.sh
 and then hit enter.

This sets permissions for the script so that only you can write to the file, while still letting all users read and execute it.

While still in your terminal, type:

./samplescript.sh

to run the script.</description>
		<content:encoded><![CDATA[<p>Sergey, your problem is that you are not running the script from the terminal, you are simply opening a text file&#8230;.</p>
<p>If you are using Ubuntu you need to click Applications &#8211;&gt; Accessories &#8211;&gt; Terminal</p>
<p>Now that your terminal is open, type:<br />
chmod 755 samplescript.sh<br />
 and then hit enter.</p>
<p>This sets permissions for the script so that only you can write to the file, while still letting all users read and execute it.</p>
<p>While still in your terminal, type:</p>
<p>./samplescript.sh</p>
<p>to run the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: youssef</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-57090</link>
		<dc:creator>youssef</dc:creator>
		<pubDate>Fri, 27 Aug 2010 08:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-57090</guid>
		<description>I have aproblem with application called Opmanager 
when I run it and I closed the terminal the process for this application stoped I run it in Background but the same problem still persist what can I do?
thanks</description>
		<content:encoded><![CDATA[<p>I have aproblem with application called Opmanager<br />
when I run it and I closed the terminal the process for this application stoped I run it in Background but the same problem still persist what can I do?<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergey</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-57088</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Fri, 27 Aug 2010 00:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-57088</guid>
		<description>Hi,
I followed your tutorial. 
Saved the samplescript.sh file to the desktop and when I click on it it is not starting Firefox.
It is starting the gedit text editor with following text: 
#!/bin/sh
echo “welcome”
firefox</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I followed your tutorial.<br />
Saved the samplescript.sh file to the desktop and when I click on it it is not starting Firefox.<br />
It is starting the gedit text editor with following text:<br />
#!/bin/sh<br />
echo “welcome”<br />
firefox</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jake</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-56869</link>
		<dc:creator>jake</dc:creator>
		<pubDate>Thu, 12 Aug 2010 10:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-56869</guid>
		<description>great - short and sweet!</description>
		<content:encoded><![CDATA[<p>great &#8211; short and sweet!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chase</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-56789</link>
		<dc:creator>Chase</dc:creator>
		<pubDate>Wed, 04 Aug 2010 14:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-56789</guid>
		<description>suppose i wanted it to run at start up.  My goal is to start up two virtual machines when the computer starts up.</description>
		<content:encoded><![CDATA[<p>suppose i wanted it to run at start up.  My goal is to start up two virtual machines when the computer starts up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gaurav Sood</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-56630</link>
		<dc:creator>Gaurav Sood</dc:creator>
		<pubDate>Sat, 31 Jul 2010 17:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-56630</guid>
		<description>Great tutorial!!! 

:-)</description>
		<content:encoded><![CDATA[<p>Great tutorial!!! </p>
<p> <img src='http://www.ax697.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasyl</title>
		<link>http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html/comment-page-1#comment-55576</link>
		<dc:creator>Vasyl</dc:creator>
		<pubDate>Tue, 29 Jun 2010 14:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ax697.org/writing-a-basic-ubuntu-script-200786.html#comment-55576</guid>
		<description>Thank you, great post. But I still have questions...

Is it possibly to create in Ubuntu something like HTA-application (in Windows)? I need to create some window, process data (if possibly by using JavaScript) and display result as HTML. 

What can be as replacement for 
ActiveXObject(&quot;WScript.Shell&quot;)
ActiveXObject(&quot;Scripting.FileSystemObject&quot;)
ActiveXObject(&quot;Msxml.DOMDocument&quot;)?</description>
		<content:encoded><![CDATA[<p>Thank you, great post. But I still have questions&#8230;</p>
<p>Is it possibly to create in Ubuntu something like HTA-application (in Windows)? I need to create some window, process data (if possibly by using JavaScript) and display result as HTML. </p>
<p>What can be as replacement for<br />
ActiveXObject(&#8220;WScript.Shell&#8221;)<br />
ActiveXObject(&#8220;Scripting.FileSystemObject&#8221;)<br />
ActiveXObject(&#8220;Msxml.DOMDocument&#8221;)?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

