Skip to content

Commit faebe8e

Browse files
committed
bug fix in extract.pl
1 parent 323a5d4 commit faebe8e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,20 @@ Usage:
4949
extract.pl -t <table name> -r <restore file> [options]
5050

5151
Required:
52+
5253
-t <table name> table name to extract from the file
5354

5455
Optional:
56+
5557
-r <restore file> mysqldump file that you want to parse. Uses STDIN if nothing is specified
5658

5759
--listTables If set, then a list of tables existing in your restore file is returned, and no other actions are taken
5860

5961
--noExtras If set, then extra cmds at top of mysqldump file will not be included (such as disabling foreign key checks).
6062

6163
Usually you will want these things changed before restoring a table, so the default is for these to be included.
64+
6265
-v verbosity - use multiple times for greater effect
66+
6367
-h Display this help message
6468

extract.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Creation Date: 2007-05-23
3333
#
3434
# Changelog:
35-
# 2012-04-28 v2.0 Marius Voila
35+
# 2012-04-28 v1.0.1 Marius Voila
3636
# - bug fixes
3737
# - small updates
3838
# 2007-05-23 v1.0 Marius Voila
@@ -48,7 +48,7 @@
4848
## Global Variable(s)
4949
my %conf = (
5050
"programName" => $0, ## The name of this program
51-
"version" => '1.0', ## The version of this program
51+
"version" => '1.0.1', ## The version of this program
5252
"authorName" => 'Marius Voila', ## Author's Name
5353
"authorEmail" => 'myself@mariusv.com', ## Author's Email Address
5454
"debug" => 0, ## Default debug level

0 commit comments

Comments
 (0)