From 9f19c22b773c60695e9287f672db161a9e01d51f Mon Sep 17 00:00:00 2001 From: Janit Sriganeshaelankovan Date: Thu, 14 Oct 2021 16:43:30 -0400 Subject: [PATCH] updated the README to include commands for Unix systems --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cfa4921..ce9b9cd 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,8 @@ jar cf json-java.jar org/json/*.class *Compile a program that uses the jar (see example code below)* ```` -javac -cp .;json-java.jar Test.java +javac -cp .;json-java.jar Test.java (Windows) +javac -cp .:json-java.jar Test.java (Unix Systems) ```` *Test file contents* @@ -71,7 +72,8 @@ public class Test { *Execute the Test file* ```` -java -cp .;json-java.jar Test +java -cp .;json-java.jar Test (Windows) +java -cp .:json-java.jar Test (Unix Systems) ```` *Expected output*