diff --git a/src/man1/mdbx_chk.1 b/src/man1/mdbx_chk.1 index dd6e4115..193c2925 100644 --- a/src/man1/mdbx_chk.1 +++ b/src/man1/mdbx_chk.1 @@ -1,6 +1,6 @@ .\" Copyright 2015-2020 Leonid Yuriev . .\" Copying restrictions apply. See COPYRIGHT/LICENSE. -.TH MDBX_CHK 1 "2020-07-31" "MDBX 0.9.x" +.TH MDBX_CHK 1 "2020-09-25" "MDBX 0.9.1" .SH NAME mdbx_chk \- MDBX checking tool .SH SYNOPSIS @@ -44,9 +44,6 @@ during B-tree traversal and basic info of each GC record. If \fB\-vvvvv\fP is given, turn maximal verbosity, display the full list of page IDs in the GC records and size of each key-value pair of database(s). .TP -.BR \-n -Open MDBX environment(s) which do not use subdirectories. -.TP .BR \-q Be quiet; do not output anything even if an error was detected. .TP @@ -74,6 +71,19 @@ comparator(s) was used. .TP .BR \-s \ subdb Verify and show info only for a specific subdatabase. +.TP +.BR \-0 | \-1 | \-2 +Using specific meta-page 0, or 2 for checking. +.TP +.BR \-t +Turn to a specified meta-page on successful check. +.TP +.BR \-T +Turn to a specified meta-page EVEN ON UNSUCCESSFUL CHECK! +.TP +.BR \-n +Open MDBX environment(s) which do not use subdirectories. +This is legacy option. For now MDBX handles this automatically. .SH DIAGNOSTICS Exit status is zero if no errors occur. Errors result in a non-zero exit status and a diagnostic message being written to standard error diff --git a/src/man1/mdbx_copy.1 b/src/man1/mdbx_copy.1 index a4458e3a..f2e42e26 100644 --- a/src/man1/mdbx_copy.1 +++ b/src/man1/mdbx_copy.1 @@ -2,7 +2,7 @@ .\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved. .\" Copyright 2015,2016 Peter-Service R&D LLC . .\" Copying restrictions apply. See COPYRIGHT/LICENSE. -.TH MDBX_COPY 1 "2020-07-31" "MDBX 0.9.x" +.TH MDBX_COPY 1 "2020-09-25" "MDBX 0.9.1" .SH NAME mdbx_copy \- MDBX environment copy tool .SH SYNOPSIS diff --git a/src/man1/mdbx_dump.1 b/src/man1/mdbx_dump.1 index d744aa5e..8b371d2c 100644 --- a/src/man1/mdbx_dump.1 +++ b/src/man1/mdbx_dump.1 @@ -2,7 +2,7 @@ .\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved. .\" Copyright 2015,2016 Peter-Service R&D LLC . .\" Copying restrictions apply. See COPYRIGHT/LICENSE. -.TH MDBX_DUMP 1 "2020-07-31" "MDBX 0.9.x" +.TH MDBX_DUMP 1 "2020-09-25" "MDBX 0.9.1" .SH NAME mdbx_dump \- MDBX environment export tool .SH SYNOPSIS @@ -68,6 +68,7 @@ Rescure mode. Ignore some errors to dump corrupted DB. .TP .BR \-n Dump an MDBX database which does not use subdirectories. +This is legacy option. For now MDBX handles this automatically. .SH DIAGNOSTICS Exit status is zero if no errors occur. Errors result in a non-zero exit status and diff --git a/src/man1/mdbx_load.1 b/src/man1/mdbx_load.1 index aae0ae56..d919287d 100644 --- a/src/man1/mdbx_load.1 +++ b/src/man1/mdbx_load.1 @@ -2,7 +2,7 @@ .\" Copyright 2014-2015 Howard Chu, Symas Corp. All Rights Reserved. .\" Copyright 2015,2016 Peter-Service R&D LLC . .\" Copying restrictions apply. See COPYRIGHT/LICENSE. -.TH MDBX_LOAD 1 "2020-07-31" "MDBX 0.9.x" +.TH MDBX_LOAD 1 "2020-09-25" "MDBX 0.9.1" .SH NAME mdbx_load \- MDBX environment import tool .SH SYNOPSIS @@ -40,6 +40,19 @@ must be in the output format specified by the utility or as specified by the .B -T option below. + +A simple escape mechanism, where newline and backslash (\\) characters are special, is +applied to the text input. Newline characters are interpreted as record separators. +Backslash characters in the text will be interpreted in one of two ways: If the backslash +character precedes another backslash character, the pair will be interpreted as a literal +backslash. If the backslash character precedes any other character, the two characters +following the backslash will be interpreted as a hexadecimal specification of a single +character; for example, \\0a is a newline character in the ASCII character set. + +For this reason, any backslash or newline characters that naturally occur in the text +input must be escaped to avoid misinterpretation by +.BR mdbx_load . + .SH OPTIONS .TP .BR \-V @@ -74,19 +87,7 @@ Rescure mode. Ignore errors to load corrupted DB dump. .TP .BR \-n Load an MDBX database which does not use subdirectories. - -A simple escape mechanism, where newline and backslash (\\) characters are special, is -applied to the text input. Newline characters are interpreted as record separators. -Backslash characters in the text will be interpreted in one of two ways: If the backslash -character precedes another backslash character, the pair will be interpreted as a literal -backslash. If the backslash character precedes any other character, the two characters -following the backslash will be interpreted as a hexadecimal specification of a single -character; for example, \\0a is a newline character in the ASCII character set. - -For this reason, any backslash or newline characters that naturally occur in the text -input must be escaped to avoid misinterpretation by -.BR mdbx_load . - +This is legacy option. For now MDBX handles this automatically. .SH DIAGNOSTICS Exit status is zero if no errors occur. Errors result in a non-zero exit status and diff --git a/src/man1/mdbx_stat.1 b/src/man1/mdbx_stat.1 index b018e6f5..c2e226c9 100644 --- a/src/man1/mdbx_stat.1 +++ b/src/man1/mdbx_stat.1 @@ -2,7 +2,7 @@ .\" Copyright 2012-2015 Howard Chu, Symas Corp. All Rights Reserved. .\" Copyright 2015,2016 Peter-Service R&D LLC . .\" Copying restrictions apply. See COPYRIGHT/LICENSE. -.TH MDBX_STAT 1 "2020-07-31" "MDBX 0.9.x" +.TH MDBX_STAT 1 "2020-09-25" "MDBX 0.9.1" .SH NAME mdbx_stat \- MDBX environment status tool .SH SYNOPSIS @@ -61,6 +61,7 @@ Display the status of a specific subdatabase. .TP .BR \-n Display the status of an MDBX database which does not use subdirectories. +This is legacy option. For now MDBX handles this automatically. .SH DIAGNOSTICS Exit status is zero if no errors occur. Errors result in a non-zero exit status and