You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,9 @@
2
2
3
3
Finds all specified files in the current directory and its sub-folders if desired.
4
4
Then removes duplicated lines, capitalizes them and sort the content.
5
-
In the *config.properties* file, you can specify the extension looked for (default is "*txt*"), if it's recursive (default is "*true*") and if contents are capitalized (default is "*true*").
6
5
7
6
### How to use it
8
-
Place the *jar* file in where the files to process are and with a command-line interface run `java -jar sort.jar`.
7
+
Place the *jar* file in where the files to process are and with a command-line interface run `java -jar sort.jar`.
8
+
As input args, you can specify the `extension` looked for (default is "*txt*"), if it's `recursive` (default is "*true*") and if it `capitalize` the contents (default is "*true*").
9
+
When first use, a `config.properties` will be created holding these. It will be edited when other inputs will be passed.
10
+
For instance, to disable recursivity and capitalization run: `java -jar sort.jar recursive false capitalize false`
0 commit comments