Skip to content
Snippets Groups Projects
Commit 8377fc74 authored by Jan-hinnerk Vogel's avatar Jan-hinnerk Vogel
Browse files

command line arguments standardized to the ones used in the genebuild scripts...

command line arguments standardized to the ones used in the genebuild scripts ( dbhost dbname dbport ... )
parent 0c0c423f
No related branches found
No related tags found
No related merge requests found
......@@ -16,13 +16,13 @@ use FindBin;
my ( $host, $user, $pass, $port, @dbnames, $file, $release_num,
$nobackup,$forceTableWrite );
GetOptions( "host=s", \$host,
"user=s", \$user,
"pass=s", \$pass,
"port=i", \$port,
GetOptions( "dbhost|host=s", \$host,
"dbuser|user=s", \$user,
"dbpass|pass=s", \$pass,
"dbport|port=i", \$port,
"file=s", \$file,
"nobackup", \$nobackup,
"dbnames=s@", \@dbnames,
"dbname|dbnames=s@", \@dbnames,
"release_num=i", \$release_num,
"force_table_write", \$forceTableWrite);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment