From: Jason Etheridge Date: Fri, 31 Jul 2020 14:46:31 +0000 (-0400) Subject: make the straight listing of rows for the file optional via --list X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=a6956aea6f53349de13998558d47d8f116045946 make the straight listing of rows for the file optional via --list Signed-off-by: Jason Etheridge --- diff --git a/emig.d/bin/mig-quicksheet b/emig.d/bin/mig-quicksheet index b33e2e0..76d227e 100755 --- a/emig.d/bin/mig-quicksheet +++ b/emig.d/bin/mig-quicksheet @@ -59,12 +59,14 @@ use EMig; my $outtable = ''; my $outfile = ''; my $force; +my $list; my $drop; my $help; GetOptions( 'outtable=s' => \$outtable, 'outfile=s' => \$outfile, + 'list' => \$list, 'force' => \$force, 'drop' => \$drop, 'help|?' => \$help @@ -286,7 +288,7 @@ sub write_worksheets { }; } - handle_list(); + handle_list() if $list; handle_columns(); if ($outfile) {