(Perl) GetOptions


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting (Perl) GetOptions
# 1  
Old 02-25-2009
(Perl) GetOptions

hi all -

i'm trying to teach myself some perl, and my first project is to take a bash script i wrote to process some logfiles and port it. that script works well, it's just slow, and the whole thing seemed like a good way to learn.

one really nice thing about my bash script is that it looks at any arguments passed, assigns values to variables, and if it finds something's missing, prompts the user for that information before proceeding. i believe i can make the same logic work using perl, but i'm stumped about some specifics. my googling tells me that i probably want to use Getoptions::Long to handle command line arguments; i've gotten fair results using Switch, but i think GetOptions is likely cleaner. i am, of course, open to suggestions.

anyway, since the script will do a few different operations (a basic find, count occurrences of $string, etc.), i'm using $operation to hold, well, the operation we're performing, and $string to hold the string we're looking for. i believe i can use GetOptions to process arguments properly if i call the script like, for example, this:

logChecker --operation find --address me@domain.com

but what i'd really like to do is to call it like this:

logChecker.pl -f me@domain.dom

(so, find (-f) all instances of the supplied email address)

but i can't figure out how to tell GetOptions to assign values to multiple variables based on one pair of options like that. so that's my question: am i asking too much of GetOptions? is it possible for GetOptions to look at something like '-f me@domain.dom' and assign $operation=find AND $string=me@domain.dom?

i'm hoping it's possible, but i haven't found an example of it yet.

thanks in advance,
-john.
# 2  
Old 02-25-2009
Take a look at Getopt::Std instead, might be more of use for you.
# 3  
Old 02-28-2009
thanks for the reply -

i actually looked at Getopt::Std in the beginning, and i don't think it's what i'm looking for. i also realized i could have been more specific about what i was trying to do. to that end, here's the relevant snippet from the existing bash script i'm trying to replicate:

Code:
while [ $# -gt 0 ]; do
case $1 in

-f)     findOnly=1; item=$2; shift 2;;
-v)     set -x; shift;;
-t)     daysBack=$2; shift 2;;
-d)     op=deliveries; shift;;
-h)     op=ham; shift;;
-s)     op=spam; shift;;
-A)     op=all; item=$2; shift;;

esac
done

as you can see, in a few of those cases, we're assigning a couple of variables at once, which is what's currently tripping me up. there's logic elsewhere that checks for which of those variables have been set, and prompts the user for anything that's missing. later on, the script simply calls 'op' - that is, whichever subroutine was defined by the flag(s) when the script was called. in bash, it was pretty easy, and i'm sure there's a way to replicate the logic in perl, i just can't get my head around it.

to be clear, the script wants to work with whatever it's given, whether it's a full set of flags & arguments, a partial set, or nothing at all...for that reason, i (think i) can't simply call a subroutine as soon as i see the flag for it (like -d for 'deliveries') because we need to finish assigning variables first, whether by looking at the rest of @ARGV or by prompting the user.

the only way i've been able to come up with is to 1) sort out any passed flags & arguments, 2) check for anything missing & poke at the user, and THEN 3) go do stuff. that seemed like the most sane approach, but i am, as i say, open to any suggestions.

thanks again to all,
-john.
# 4  
Old 04-13-2009
for john

sub readFromCmdLine()
{
my $helpInfo=0;
GetOptions("type=s" => \$type
"delay=i" => \$configHash{amr_db_mon_delay},
"mode=s" => \$mode,
"help" => \$helpInfo);
if ($helpInfo)
{
print "usage:amr_db_monitor.pl [ --delay=<seconds> ] [--mode=bg & ]\n";
exit 1;
}
}
# 5  
Old 04-13-2009
hi vishal -

thanks for your reply - i couldn't get anywhere with this problem, so i'd put it on the shelf for a while.

can you please explain a bit about what your code does? i can't quite figure it out.

thanks,
-john.
# 6  
Old 04-13-2009
for the most part.. .. . i hate GetOpts commands. Using them is typically
more confusing than just creating a nasty if/then/else statement. This belief
of mine is once again supported by seeing the trouble you're having with it.

So, here's how I would typically approach this problem:

Code:
#!/usr/local/bin/perl

### while [ $# -gt 0 ]; do
### case $1 in
###
### -f)     findOnly=1; item=$2; shift 2;;
### -v)     set -x; shift;;
### -t)     daysBack=$2; shift 2;;
### -d)     op=deliveries; shift;;
### -h)     op=ham; shift;;
### -s)     op=spam; shift;;
### -A)     op=all; item=$2; shift;;
###
### esac
### done


for $x ( 0 .. $#ARGV ){

  $arg = $ARGV[$x];

  if ( $arg eq "-f" ){
    $find_only = 1;
    $x++;
    $item = ${ARGV[$x]};
    next;
    }

  if ( $arg eq "-v" ){
    ### no such perl option.
    next;
    }

  if ( $arg eq "-t" ){
    $x++;
    $days_back = ${ARGV[$x]};
    next;
    }

#----------------------------------------------------------------------#
# etc...                                                               #
#----------------------------------------------------------------------#
  }

print "find_only: $find_only \n";
print "item:      $item \n";
print "days_back: $days_back \n";

Test:

Code:
% girl.pl -f superfrogs -t 123
find_only: 1
item:      superfrogs
days_back: 123

# 7  
Old 04-13-2009
GetOpts is for the benefit of people that use a program, not necessarily the programmer. It emulates/implements the POSIX syntax for command line options, with GNU extensions. That way users (or programmers) that are familiar with those conventions/syntax don't have anything new to learn.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

PERL: In a perl-scripttTrying to execute another perl-script that SETS SOME VARIABLES !

I have reviewed many examples on-line about running another process (either PERL or shell command or a program), but do not find any usefull for my needs way. (Reviewed and not useful the system(), 'back ticks', exec() and open()) I would like to run another PERL-script from first one, not... (1 Reply)
Discussion started by: alex_5161
1 Replies

2. Programming

Perl: restrict perl from automaticaly creating a hash branches on check

My issue is that the perl script (as I have done it so far) created empty branches when I try to check some branches on existence. I am using multydimentional hashes: found it as the best way for information that I need to handle. Saing multidimentional I means hash of hashes ... So, I have ... (2 Replies)
Discussion started by: alex_5161
2 Replies

3. Shell Programming and Scripting

Perl :: reading values from Data Dumper reference in Perl

Hi all, I have written a perl code and stored the data into Data structure using Data::Dumper module. But not sure how to retreive the data from the Data::Dumper. Eg. Based on the key value( Here CRYPTO-6-IKMP_MODE_FAILURE I should be able to access the internal hash elements(keys) ... (1 Reply)
Discussion started by: scriptscript
1 Replies

4. UNIX for Advanced & Expert Users

perl and HP-UX : instmodsh in combination with software depot : update inventory for installed Perl

we create a HP-UX software depot with a new perl-modul. after installation of the software depot, the perl module i can't find with instmodsh in the inventory for installed Perl modules. - i have learned of using instmodsh command : i find out what modules are already installed on my system. ... (0 Replies)
Discussion started by: bora99
0 Replies

5. Shell Programming and Scripting

HELP on Perl array / sorting - trying to convert Korn Shell Script to Perl

Hi all, Not sure if this should be in the programming forum, but I believe it will get more response under the Shell Programming and Scripting FORUM. Am trying to write a customized df script in Perl and need some help with regards to using arrays and file handlers. At the moment am... (3 Replies)
Discussion started by: newbie_01
3 Replies

6. Shell Programming and Scripting

Hidden Characters in Regular Expression Matching Perl - Perl Newbie

I am completely new to perl programming. My father is helping me learn said programming language. However, I am stuck on one of the assignments he has given me, and I can't find very much help with it via google, either because I have a tiny attention span, or because I can be very very dense. ... (4 Replies)
Discussion started by: kittyluva2
4 Replies

7. Shell Programming and Scripting

Perl :How to print the o/p of a Perl script on console and redirecting same in log file @ same time.

How can i print the output of a perl script on a unix console and redirect the same in a log file under same directory simultaneously ? Like in Shell script, we use tee, is there anything in Perl or any other option ? (2 Replies)
Discussion started by: butterfly20
2 Replies

8. Shell Programming and Scripting

Perl - pass shell-vars into perl for input loop

I need to process a file line-by-line using some value from a shell variable Something like:perl -p -e 's/$shell_srch/$shell_replace/g' input.txt I can't make the '-s' work in the '-p' or '-n' input loop (or couldn't find a syntaxis.) I have searched and found... (4 Replies)
Discussion started by: alex_5161
4 Replies

9. Shell Programming and Scripting

Passing date formats in Perl: i.e. Jul/10/2007 -> 20070710 (yyyymmdd) - Perl

Hi , This script working for fine if pass script-name.sh Jul/10/2007 ,I want to pass 20070710(yyyymmdd) .Please any help it should be appereciated. use Time::Local; my $d = $ARGV; my $t = $ARGV; my $m = ""; @d = split /\//, $d; @t = split /:/, $t; if ( $d eq "Jan" ) { $m = 0 }... (7 Replies)
Discussion started by: akil
7 Replies

10. Shell Programming and Scripting

[Perl] Accessing array elements within a sed command in Perl script

I am trying to use a script to replace the header of each file, whose filename are stored within the array $test, using the sed command within a Perl script as follows: $count = 0; while ( $count < $#test ) { `sed -e 's/BIOGRF 321/BIOGRF 332/g' ${test} > 0`; `cat 0 >... (2 Replies)
Discussion started by: userix
2 Replies
Login or Register to Ask a Question