<?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>MDBitz Development Resources &#187; Unix</title>
	<atom:link href="http://resources.mdbitz.com/categories/unix/feed/" rel="self" type="application/rss+xml" />
	<link>http://resources.mdbitz.com</link>
	<description></description>
	<lastBuildDate>Mon, 22 Nov 2010 14:25:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to obtain the full absolute path of the exectuing shell script without readlink</title>
		<link>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/</link>
		<comments>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 11:16:21 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[absolute path]]></category>
		<category><![CDATA[pwd]]></category>
		<category><![CDATA[readlink]]></category>
		<category><![CDATA[Shell Script]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1451</guid>
		<description><![CDATA[One issue that I always come across when creating a shell script is referencing files dynamically based on the location of the shell script. A hack I often used was to pass the script&#8217;s path to the script on execution because the readlink command was not available to me. However recently I have revisited this [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/08/how-to-obtain-the-full-absolute-path-of-the-exectuing-shell-script-without-readlink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically generating the Java Classpath within a shell script</title>
		<link>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/</link>
		<comments>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 14:04:50 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[-cp]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Classpath]]></category>
		<category><![CDATA[Shell Script]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=1447</guid>
		<description><![CDATA[One of the main maintenance issues with running a Java application from a shell script is keeping your classpath up-to-date with the new and updated jars. To make things more difficult you can&#8217;t specify a folder as the classpath as it doesn&#8217;t include the jars in it only .class files. However through the use of [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2010/08/dynamically-generating-the-java-classpath-within-a-shell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passing Arguments or Variables to a Bash Script from the Command Line</title>
		<link>http://resources.mdbitz.com/2009/11/passing-arguments-or-variables-to-a-bash-script-from-the-command-line/</link>
		<comments>http://resources.mdbitz.com/2009/11/passing-arguments-or-variables-to-a-bash-script-from-the-command-line/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:26:45 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Arguments]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[parameters]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=614</guid>
		<description><![CDATA[Often when working with Bash scripts we find that we want to add some options to the script by way of arguments or variables. Easily enough Bash command line arguments can be accessed by $1, $2, etc within the script where $1 is the first argument or variable and #2 is the second etc. Example: [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2009/11/passing-arguments-or-variables-to-a-bash-script-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips &amp; Tricks: Comparing Text Files in Unix with DIFF command</title>
		<link>http://resources.mdbitz.com/2009/11/tips-tricks-comparing-text-files-in-unix-with-diff-command/</link>
		<comments>http://resources.mdbitz.com/2009/11/tips-tricks-comparing-text-files-in-unix-with-diff-command/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:53:38 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[compare text]]></category>
		<category><![CDATA[diff]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=579</guid>
		<description><![CDATA[When working in a unix environment you may find the need to compare the contents of 2 files. To do this unix provides the diff command. The diff command takes 2 files as an argument and outputs the differences between them in a simple easy to understand format using a simple change notation using numbers [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2009/11/tips-tricks-comparing-text-files-in-unix-with-diff-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run a Java Application from Bash Script</title>
		<link>http://resources.mdbitz.com/2009/11/how-to-run-a-java-application-from-bash-script/</link>
		<comments>http://resources.mdbitz.com/2009/11/how-to-run-a-java-application-from-bash-script/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 18:02:14 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[java application]]></category>
		<category><![CDATA[run java on unix]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=572</guid>
		<description><![CDATA[As one that seldom finds himself having to run Java Applications from a Unix Bash Script, I thought it would be helpful to share the appropriate commands i use to execute the code and to notify the user of success or failure. For reference the folder structure I use is: app_name - lib - config [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2009/11/how-to-run-a-java-application-from-bash-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips &amp; Tricks: Removing ^M from files in unix</title>
		<link>http://resources.mdbitz.com/2009/11/tips-tricks-removing-m-from-files-in-unix/</link>
		<comments>http://resources.mdbitz.com/2009/11/tips-tricks-removing-m-from-files-in-unix/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 16:12:09 +0000</pubDate>
		<dc:creator>MDBitz - Matthew Denton</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[dos2unix]]></category>
		<category><![CDATA[unix2dos]]></category>
		<category><![CDATA[^M]]></category>

		<guid isPermaLink="false">http://resources.mdbitz.com/?p=567</guid>
		<description><![CDATA[When transferring files between Windows and Unix you may find that on occasions your file has been modified and that ^M characters exist at end of lines.  This problem is caused when files are transferred to the server as Binary. However if you change the type to ASCII then you will find that the ^M [...]]]></description>
		<wfw:commentRss>http://resources.mdbitz.com/2009/11/tips-tricks-removing-m-from-files-in-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

