JavaPingReport/README.md

22 lines
757 B
Markdown
Raw Permalink Normal View History

2022-03-01 21:11:53 +00:00
## Java Ping Report
Simple program to print out and save to a file the ping status of various devices.
All inputs are done via files.
2022-03-01 21:05:11 +00:00
2022-03-01 21:11:53 +00:00
## File Structure
The following files are used
- `pingRequests.csv`: This holds all the requested devices and their associated ip's. It should be "(devicename),(deviceip)"
- `pingResults.csv`: This holds the report of the device, ip and status
2022-03-01 21:05:11 +00:00
2022-03-01 21:34:23 +00:00
## To run
Use the following commands to run the program
```
2022-03-01 21:40:17 +00:00
java -jar JavaPingReport.jar
2022-03-01 21:34:23 +00:00
```
2022-03-01 21:35:11 +00:00
Ensure that `pingRequests.csv` is in the same directory, and formatted correctly.
2022-03-01 21:34:23 +00:00
2022-03-01 21:11:53 +00:00
## Dependencies
2022-03-01 21:40:17 +00:00
No external dependencies are needed.
2022-03-01 21:34:23 +00:00
2022-03-01 21:38:06 +00:00
#### Warning
***This program is presented as-is. It does not handle a lot of user error's, and may not work as expected.
Use at your own risk.***