From b172d976671c212f61a9cb054143487253b9bd0a Mon Sep 17 00:00:00 2001 From: J053Fabi0 Date: Sat, 30 Dec 2017 11:32:10 -0700 Subject: [PATCH 1/5] : page edit; add command Custom input and output when compiling a class with the java command --- pages/common/java.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pages/common/java.md b/pages/common/java.md index 08e962585..510564b15 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -13,3 +13,6 @@ - Display JDK, JRE and HotSpot versions: `java -version` + +- Custom input and output files. Preferably .txt files +`java {{classname}} <{{inputfile}}> outputfile` From 2b2a1a5e5a435504f4260798f886d6c6dc2513df Mon Sep 17 00:00:00 2001 From: J053Fabi0 Date: Sat, 30 Dec 2017 11:38:44 -0700 Subject: [PATCH 2/5] end in a colon and surrounded by empty lines --- pages/common/Alias de install.md | Bin 0 -> 968 bytes pages/common/java.md | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 pages/common/Alias de install.md diff --git a/pages/common/Alias de install.md b/pages/common/Alias de install.md new file mode 100644 index 0000000000000000000000000000000000000000..7eedca0abe392470462a1016b82b5ac9b43d8adb GIT binary patch literal 968 zcmZ9LOG_J36vxl_s1JlDQLGE0Qz_a-V`7|W5?b2CC`A;ys9lsoJ9(&sGntT?RS}Hf z!ev*k`~WWc0ZKP!SCt<2Ykh&C;|oQcI^BgpeTubV}y z;=A6q{wA;bNk4pqhrs-P*&f~8f7i@Y;FQe212myw^8f$< literal 0 HcmV?d00001 diff --git a/pages/common/java.md b/pages/common/java.md index 510564b15..5222ddf67 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -14,5 +14,6 @@ `java -version` -- Custom input and output files. Preferably .txt files -`java {{classname}} <{{inputfile}}> outputfile` +- Custom input and output files. Preferably .txt files: + +`java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}` From 861cf7673b20c2e8e0b84a7ad0e090b39f87881e Mon Sep 17 00:00:00 2001 From: J053Fabi0 Date: Sat, 30 Dec 2017 11:40:52 -0700 Subject: [PATCH 3/5] Unexpected alias deleted --- pages/common/Alias de install.md | Bin 968 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 pages/common/Alias de install.md diff --git a/pages/common/Alias de install.md b/pages/common/Alias de install.md deleted file mode 100644 index 7eedca0abe392470462a1016b82b5ac9b43d8adb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 968 zcmZ9LOG_J36vxl_s1JlDQLGE0Qz_a-V`7|W5?b2CC`A;ys9lsoJ9(&sGntT?RS}Hf z!ev*k`~WWc0ZKP!SCt<2Ykh&C;|oQcI^BgpeTubV}y z;=A6q{wA;bNk4pqhrs-P*&f~8f7i@Y;FQe212myw^8f$< From 290b6268a6ee9a24b95438e093f45f5a66a3559b Mon Sep 17 00:00:00 2001 From: J053Fabi0 Date: Sat, 30 Dec 2017 21:37:37 -0700 Subject: [PATCH 4/5] I just hope isn't too much --- pages/common/java.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/java.md b/pages/common/java.md index 5222ddf67..af90e8fe4 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -4,7 +4,11 @@ - Execute a java .class file that contains a main method by using just the class name: -`java {{filename}}` +`java {{classname}}` + +- Custom input and output files. Preferably .txt files. This is useful when you don’t want to input from keyboard every time you run your class. Outputs from `System.out.println();` are saved in the output file: + +`java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}` - Execute a .jar program: @@ -13,7 +17,3 @@ - Display JDK, JRE and HotSpot versions: `java -version` - -- Custom input and output files. Preferably .txt files: - -`java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}` From da8ac599a12d2a158141b94d7b47b84483afcbe4 Mon Sep 17 00:00:00 2001 From: J053Fabi0 Date: Sat, 30 Dec 2017 23:45:50 -0700 Subject: [PATCH 5/5] idk how to name this one xD --- pages/common/java.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pages/common/java.md b/pages/common/java.md index af90e8fe4..ca800763b 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -6,10 +6,6 @@ `java {{classname}}` -- Custom input and output files. Preferably .txt files. This is useful when you don’t want to input from keyboard every time you run your class. Outputs from `System.out.println();` are saved in the output file: - -`java {{classname}} <{{path/to/inputfile}}> {{path/to/outputfile}}` - - Execute a .jar program: `java -jar {{filename.jar}}`