being more explicit in the command line example for Linux and Windows
diff --git a/content/odftoolkit/simple/gettingstartguide.mdtext b/content/odftoolkit/simple/gettingstartguide.mdtext
index 8bc9115..ca572f6 100644
--- a/content/odftoolkit/simple/gettingstartguide.mdtext
+++ b/content/odftoolkit/simple/gettingstartguide.mdtext
@@ -77,8 +77,14 @@
 
 If you use an IDE, you can just run this class as a Java Application. If you use command line, you may compile the code and run it with the following commands:
 
-    javac -cp lib/simple-odf-0.8.2-incubating-jar-with-dependencies.jar:. HelloWorld.java
-    java -cp lib/simple-odf-0.8.2-incubating-jar-with-dependencies.jar:. HelloWorld
+    javac -cp lib/simple-odf-0.8.2-incubating-jar-with-dependencies.jar HelloWorld.java
+
+		LINUX using ':' as classpath separator:
+		java -cp .:lib/simple-odf-0.8.2-incubating-jar-with-dependencies.jar HelloWorld
+
+		WINDOWS using ';' as classpath separator:
+		java -cp .;lib/simple-odf-0.8.2-incubating-jar-with-dependencies.jar HelloWorld
+
 **Getting the Files**
 
 You can download the code and resources of this demo from [here][2].