Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: How to read the input directory from command line arguments using perl?

by davido (Cardinal)
on Mar 22, 2017 at 04:27 UTC ( [id://1185397]=note: print w/replies, xml ) Need Help??


in reply to How to read the input directory from command line arguments using perl?

It seems like what you are asking is how to provide a default arg to the command line in the case that a command line field is not populated. ...or maybe you're asking how to parse your project.txt file, though that seems less likely since your question never explicitly mentioned that. So let's go with "I have a script that should use a default command line arg value when one isn't passed in explicitly."

use strict; use warnings; my $file = "foo.txt"; # Set a default. use Getopt::Long; GetOptions( 'file=s' => \$file, # Default will be used unless --file ... appea +rs on command line. ); print $file, "\n"; # prints 'foo.txt' unless the command line explicit +ly set something else.

If that's not what you're asking, please step back from your problem long enough to re-read your question, imagining you are someone who has no context on what you're trying to do, and rephrase the question in a way that would still make sense.

Also, you still seem to be struggling with how to format your posts here. Have a look at Writeup Formatting Tips. Hopefully that will clear things up for you.


Dave

Replies are listed 'Best First'.
Re^2: How to read the input directory from command line arguments using perl?
by finddata (Sexton) on Mar 22, 2017 at 06:44 UTC
    The things which i want to convey are as follows: 1.i have to read the project.txt file from one directory and consider +the relative path from the line which statrts with REVISION_LOCATION: + from the text file.Then my relative path should be considered as my +input_dir(i.e --root) for my following execution. <br> ./html.pl --root=/home/data/check_data/project.txt --outdir=/home/data +/generate --mapfile=/home/data/check_data/mapfile.txt </br>
      The perl script won't be executed in HTML code!!! See here ...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1185397]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-24 23:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found