Skip to content

Commit

Permalink
#4: Add missing documentation for -f command line option
Browse files Browse the repository at this point in the history
  • Loading branch information
mblauth committed Aug 11, 2022
1 parent 78a30f5 commit 312542d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Currently supported are

## Usage
```
java -jar jdump.jar [-A] [-H] [-J] [-d<duration in seconds>] [-N] [-T]
java -jar jdump.jar [-f<folder name>] [-A] [-H] [-J] [-d<duration in seconds>] [-N] [-T]
Options:
start without options to show UI, if not on a headless system
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jdump/cli/CommandLineArguments.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private static Optional<String> getLastOf(List<String> argList, String parameter
}

private void showUsageInformation() {
System.out.println("Usage: jdump [-A] [-H] [-J] [-d<duration in seconds>] [-N] [-T]");
System.out.println("Usage: jdump [-f<folder name>] [-A] [-H] [-J] [-d<duration in seconds>] [-N] [-T]");
System.out.println();
System.out.println("Options:");
System.out.println("start without options to show UI, if not on a headless system");
Expand Down

0 comments on commit 312542d

Please sign in to comment.