-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
67 lines (56 loc) · 2.65 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
################################################################
_____________________ _____ ________ _____ ___________
\______ \_ _____/ / _ \ \______ \ / \ \_ _____/
| _/| __)_ / /_\ \ | | \ / \ / \ | __)_
| | \| \/ | \| ` \/ Y \| \
|____|_ /_______ /\____|__ /_______ /\____|__ /_______ /
\/ \/ \/ \/ \/ \/
################################################################
# Miscellany #
################################################################
This section includes general purpose information about this
application and the author thereof.
Application JavaHomework
Language Java
Min. Version JRE 1.5.00 (built on JDK 1.6.00.23)
Author Gary Resnick ([email protected])
Date 26/03/2012
################################################################
# Assumptions #
################################################################
This section describes any and all assumptions this application
depends upon.
(1) The output file is created at the location
/tmp/input_file.txt.out
where
/tmp/ is the directory that contains the input file, and
input_file.txt is the name of the input file.
In other words, it merely appends the suffix '.out' to the
input file's filepath.
(2) Upon encountering input that does not match the specified
criteria, the entry is skipped, an error is stored, and
processing continues.
In other words, an attempt has been made to localize the
impact of erroneous input data. Once processing has
completed, errors are reported to the standard error output.
################################################################
# How to launch this application #
################################################################
This section describes the steps necessary to launch this
application from the command line.
[Optional - Compilation]
(-1) Navigate to the /src directory distributed with this archive.
E.g. /tmp/JavaHomework/src
(0) Enter the following command into the command line
$> javac -d ../bin za/co/resnick/javahomework/Launcher.java
[End of optional steps]
(1) Navigate to the /bin directory distributed with this archive.
E.g. /tmp/JavaHomework/bin
(2) Enter the following command into the command line
$> java za.co.resnick.javahomework.Launcher <filename>
where <filename> is the absolute or relative path to the
input file.
################################################################
# Thank you for this opportunity! #
################################################################
EOF