title=JGrep - Text search utility - v01.0
insufficientArguments=The pattern to search for and at least one file must be specified
unrecognizedOption=Invalid option ({0})
patternErrorMessage=Exception parsing search pattern ({0})
fileErrorMessage=Exception reading file {0} ({1})
usage0='Usage:  JGrep [-options] pattern file1 file2 ...
usage1='
usage2='        options - search options:
usage3='                    c - case sensitive
usage4='                    r - recurse directories
usage5='        pattern - pattern to search for
usage6='        file    - file specification, including wildcards
usage7='
usage8='note: to use the -r option with wildcards, enclose the file specification in
usage9='      double quotes to prevent expansion by the java environment
usage10='
usage11='The pattern is specified as a regular expression consisting of a
usage12='sequence of tokens. The supported tokens are:
usage13='
usage14='\\b       matches a backspace
usage15='\\f       matches a form feed
usage16='\\n       matches a line feed
usage17='\\r       matches a carriage return
usage18='\\t       matches a tab
usage19='\\uhhhh   matches a character given by its Unicode value, as four hex digits
usage20='\\x       matches the character x (used to match a character that otherwise
usage21='         would have a special meaning)
usage22='^        matches the start of the line
usage23='$        matches the end of the line
usage24='*        matches the preceding token 0 or more times
usage25='+        matches the preceding token 1 or more times
usage26='?        matches the preceding token 0 or 1 time
usage27='.        matches any character
usage28='(x)      matches the expression x
usage29='x|y      matches the expressions x or y
usage30='[xyz]    character set; matches any character of the set; a range of
usage31='         characters can be specified as x-y
usage32='[^xyz]   a negated character set; matches any character that is not in the set
usage33='\\d       matches a digit; equivalent to [0-9]
usage34='\\D       matches any character except a digit; equivalent to [^0-9]
usage35='\\s       matches a 'white space'; equivalent to [ \\f\\n\\r\\t]
usage36='\\S       matches anything except a 'white space'; equivalent to [^ \\f\\n\\r\\t]
usage37='\\w       matches any alphanumeric character, including underscore; equivalent
usage38='         to [A-Za-z0-9_]
usage39='\\W       matches anything, except an alphanumeric character and underscore;
usage40='         equivalent to [^A-Za-z0-9_]
