IgnoreCase = new FlagArgument("ignore-case", 0, help_case);
Invert = new FlagArgument("invert", 0, help_invert);
MatchWord = new FlagArgument("word-match", 0, help_match_word);
MatchLine = new FlagArgument("line-match", 0, help_match_line);
MaxCount = new IntegerArgument("max-matches", 0, help_max);
Quiet = new FlagArgument("quiet", 0, help_quiet);
Suppress = new FlagArgument("suppress", 0, help_suppress);
Debug = new FlagArgument("debug", 0, help_debug);
registerArguments(IgnoreCase, Invert, MatchWord, MatchLine, MaxCount, Quiet, Suppress, Debug);
ShowCount = new FlagArgument("show-count", 0, help_count);
ShowFileNoMatch = new FlagArgument("show-files-nomatch", 0, help_file_nomatch);
ShowFileMatch = new FlagArgument("show-files-match", 0, help_file_match);
ShowOnlyMatch = new FlagArgument("show-only-match", 0, help_only_matching);
registerArguments(ShowCount, ShowFileNoMatch, ShowFileMatch, ShowOnlyMatch);
PrefixByte = new FlagArgument("prefix-byte", 0, help_prefix_byte);
PrefixFile = new FlagArgument("prefix-file", 0, help_prefix_file);
PrefixNoFile = new FlagArgument("prefix-nofile", 0, help_prefix_nofile);
PrefixLabel = new StringArgument("prefix-label", 0, help_prefix_label);
PrefixLine = new FlagArgument("prefix-line", 0, help_prefix_line);
PrefixTab = new FlagArgument("prefix-tab", 0, help_prefix_tab);
PrefixNull = new FlagArgument("prefix-null", 0, help_prefix_null);
registerArguments(PrefixByte, PrefixFile, PrefixNoFile, PrefixLabel, PrefixLine, PrefixTab, PrefixNull);
ContextAfter = new IntegerArgument("show-context-after", 0, help_context_after);
ContextBefore = new IntegerArgument("show-context-before", 0, help_context_before);
ContextBoth = new IntegerArgument("show-context-both", 0, help_context_both);
registerArguments(ContextAfter, ContextBefore, ContextBoth);
ModeBinary = new StringArgument("mode-binary", 0, help_mode_binary);
ModeDevice = new StringArgument("mode-device", 0, help_mode_device);
ModeDir = new StringArgument("mode-dir", 0, help_mode_dir);