mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
sql: Added --verbose.
This commit is contained in:
parent
7a018602da
commit
b7b5725f6d
11
src/sql
11
src/sql
|
@ -152,6 +152,13 @@ when called with B<--shebang>).
|
|||
Size of tables. Show the size of the tables in the database.
|
||||
|
||||
|
||||
=item B<--verbose>
|
||||
|
||||
=item B<-v>
|
||||
|
||||
Print which command is sent.
|
||||
|
||||
|
||||
=item B<--version>
|
||||
|
||||
=item B<-V>
|
||||
|
@ -533,6 +540,7 @@ if($dburl{'query'}) {
|
|||
do {
|
||||
if(@ARGV) {
|
||||
$::opt_debug and print "$batch_command\n";
|
||||
$::opt_verbose and print "$batch_command\n";
|
||||
open(M,"| $batch_command") || die("mysql/psql/sqlplus not in path");
|
||||
for(@ARGV) {
|
||||
s/\\n/\n/g;
|
||||
|
@ -542,9 +550,11 @@ do {
|
|||
close M;
|
||||
} elsif (is_stdin_terminal()) {
|
||||
$::opt_debug and print "$interactive_command\n";
|
||||
$::opt_verbose and print "$interactive_command\n";
|
||||
system("$interactive_command");
|
||||
} else {
|
||||
$::opt_debug and print "$batch_command\n";
|
||||
$::opt_verbose and print "$batch_command\n";
|
||||
system("$batch_command");
|
||||
}
|
||||
$err = $?>>8;
|
||||
|
@ -593,6 +603,7 @@ sub parse_options {
|
|||
# GNU requirements
|
||||
"help|h" => \$::opt_help,
|
||||
"version|V" => \$::opt_version,
|
||||
"verbose|v" => \$::opt_verbose,
|
||||
) || die_usage();
|
||||
|
||||
if(defined $::opt_help) { die_usage(); }
|
||||
|
|
Loading…
Reference in a new issue