Index: /Code/ModelTranslator/build-jk.xml
===================================================================
--- /Code/ModelTranslator/build-jk.xml	(revision 60)
+++ /Code/ModelTranslator/build-jk.xml	(revision 61)
@@ -104,5 +104,10 @@
             </manifest>
 		</jar>
-		<mkdir dir="${build.jar.dir}/lib" />
+		<!-- Copy Start Scripts -->
+		<copy todir="${build.jar.dir}" failonerror="true" overwrite="true">
+            <fileset dir="scripts"/>
+        </copy>
+		<!-- Copy libraries -->
+        <mkdir dir="${build.jar.dir}/lib" />
 		<copy todir="${build.jar.dir}/lib" failonerror="true" overwrite="true">
             <fileset dir="lib">
@@ -117,9 +122,10 @@
             </fileset>
         </copy>
+		<!-- Copy input models -->
 		<mkdir dir="${build.jar.dir}/input" />
 		<copy todir="${build.jar.dir}/input" failonerror="true" overwrite="true">
-			<fileset dir="input">
-            </fileset>
+			<fileset dir="input"/>
 		</copy>
+		<!-- Create folder for results -->
 		<mkdir dir="${build.jar.dir}/output" />
 		
Index: /Code/ModelTranslator/scripts/dimacsExample.bat
===================================================================
--- /Code/ModelTranslator/scripts/dimacsExample.bat	(revision 61)
+++ /Code/ModelTranslator/scripts/dimacsExample.bat	(revision 61)
@@ -0,0 +1,2 @@
+@echo off
+java -Xms1175m -Xmx1175m -jar ModelTranslator.jar -in input/model.model output/Linux_x86_2.6.33.3.dimacs -v 2.6.33.3 -comment "X86 translation of Linux 2.6.33.3 using KConfigReader"
Index: /Code/ModelTranslator/scripts/dimacsExample.sh
===================================================================
--- /Code/ModelTranslator/scripts/dimacsExample.sh	(revision 61)
+++ /Code/ModelTranslator/scripts/dimacsExample.sh	(revision 61)
@@ -0,0 +1,8 @@
+#!/bin/sh
+#Qsub parameters
+#$ -cwd
+#$ -l mem=10000m
+#$ -q all.q,fast.q,acogpr.q
+#
+#
+java -Xms8000m -Xmx8000m -XX:ParallelGCThreads=1 -XX:ConcGCThreads=1 -jar ModelTranslator.jar -in input/model.model output/Linux_x86_2.6.33.3.dimcas -v 2.6.33.3 -comment "X86 translation of Linux 2.6.33.3 using KConfigReader"
Index: /Code/ModelTranslator/scripts/ivmlExample.bat
===================================================================
--- /Code/ModelTranslator/scripts/ivmlExample.bat	(revision 61)
+++ /Code/ModelTranslator/scripts/ivmlExample.bat	(revision 61)
@@ -0,0 +1,2 @@
+@echo off
+java -Xms1175m -Xmx1175m -jar ModelTranslator.jar -in input/model.model output/Linux_x86_2.6.33.3.ivml -v 2.6.33.3 -comment "X86 translation of Linux 2.6.33.3 using KConfigReader"
Index: /Code/ModelTranslator/scripts/ivmlExample.sh
===================================================================
--- /Code/ModelTranslator/scripts/ivmlExample.sh	(revision 61)
+++ /Code/ModelTranslator/scripts/ivmlExample.sh	(revision 61)
@@ -0,0 +1,8 @@
+#!/bin/sh
+#Qsub parameters
+#$ -cwd
+#$ -l mem=10000m
+#$ -q all.q,fast.q,acogpr.q
+#
+#
+java -Xms8000m -Xmx8000m -XX:ParallelGCThreads=1 -XX:ConcGCThreads=1 -jar ModelTranslator.jar -in input/model.model output/Linux_x86_2.6.33.3.ivml -v 2.6.33.3 -comment "X86 translation of Linux 2.6.33.3 using KConfigReader"
Index: /Code/ModelTranslator/src/de/uni_hildesheim/sse/trans/cli/ArgumentsParser.java
===================================================================
--- /Code/ModelTranslator/src/de/uni_hildesheim/sse/trans/cli/ArgumentsParser.java	(revision 60)
+++ /Code/ModelTranslator/src/de/uni_hildesheim/sse/trans/cli/ArgumentsParser.java	(revision 61)
@@ -35,8 +35,10 @@
     static {
         createOption("inputFile", "The input file which shall be translated", CMD_IN, true);
-        createOption("outputFile", "The output file, where the translated model shall be saved", CMD_OUT, true);
+        createOption("outputFile", "The output file, where the translated model shall be saved. "
+            + "If the file extension is *.ivml, a IVML file will be written. "
+            + "In any onther case, a DIMACS will will be created.", CMD_OUT, true);
         createOption(CMD_COMMENT, "An optional comment, which shall be added to the translated result", CMD_COMMENT,
             false);
-        OPTIONS.addOption(CMD_HELP, "help", false, "Prints this help isntead of perfoming the model translation");
+        OPTIONS.addOption(CMD_HELP, "help", false, "Prints this help instead of perfoming the model translation");
         OPTIONS.addOption(CMD_VERSION, "version", true, "Optional: The version of the source model (in IVML syntax)");
         
@@ -111,6 +113,8 @@
      */
     public static void printHelp() {
+        System.out.println("KConfig ModelTranslator");
+        System.out.println("Converts *.model files, produced by KConfigReader, into IVML/DIMACS files.");
         HelpFormatter formatter = new HelpFormatter();
-        formatter.printHelp("ModelTranslator", OPTIONS);
+        formatter.printHelp("-in <inputFile> -out <destinationFile.(ivml|dimacs)> [further options]", OPTIONS);
     }
 }
