Skip to content

Commit

Permalink
updated --help
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVavaldi committed Mar 20, 2023
1 parent 00901ef commit 236dc8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_install.cmake
ruleprocessorY*
cmake-build-*
build.ninja

.idea
# Prerequisites
*.d

Expand Down
6 changes: 3 additions & 3 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ static void show_usage() {
<< "\t-h,--help\t\t\tShow this help message\n"
<< "\t-w,--wordlist WORDLIST_FILE\tSpecify the input wordlist path\n"
<< "\t-r,--rules RULE_FILE\t\tSpecify the input rules path\n"
<< "\t--hashcat-input\t\t\tUse hashcat rule format for input rules\n\n"
<< "\t--hashcat-output\t\t\tUse hashcat rule format for the output of rules\n\n"
<< "\t--hashcat-input\t\t\tUse hashcat rule format for input rules\n"
<< "\t--hashcat-output\t\tUse hashcat rule format for the output of rules\n\n"
<< "\t--optimize-no-op\t\tRemove rules that perform no operation \"$1 ]\"\n"
<< "\t--optimize-same-op\t\tRemove rules that perform the same operation \"$1 $1 ]\" => \"$1\"\n"
<< "\t--optimize-similar-op\t\tRemove one of the rules that performs a similar operation \"$1 ^1\" and \"^1 $1\"\n"
<< "\t--optimize-all\t\t\tAll the optimizations!\n"
<< "\t--optimize-compare COMPARE_FILE\tRemove rules from RULE_FILE found in COMPARE_FILE (like similar-op)\n"
<< "\t--optimize-debug\t\tShow the modified rules in STDOUT\n"
<< "\t--optimize-slow\t\t\tDo not use memory to store data\n"
<< "Version: 1.0-beta\n\n"
<< "Version: 1.1\n\n"
<< std::endl;
}

Expand Down

0 comments on commit 236dc8e

Please sign in to comment.