Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Hello there! Well, there are a lot of ways you could go about this. I'll list three very easy to implement ones, each with a different approach

One, simply cd into the script directory and run your script from there.

cd C:\\Scripts

Two, use File::Basename so you can build an absolute path to your test1.txt file using dirname:

#!/usr/bin/env perl use File::Basename; use strict; use warnings; @ARGV = (dirname(__FILE__)."/test1.txt"); while(<>) { chomp; print "It was $_ that in some stooge like file!\n"; }

The above code works because your test1.txt file is located in the same directory as your script and therefore, you can use dirname with the __FILE__ variable(or $0) and simply tack on the filename to get a path to your text file.

Three, you could use an absolute path:

#!/usr/bin/env perl use strict; use warnings; @ARGV = ("C:/Scripts/test1.txt"); while (<>) { chomp; print "It was $_ that I saw in some stooge-like file!\n"; }

As you can see, there is more than one way to do it. There are still more ways than I have listed, but they should be sufficient :).


In reply to Re: Noob Question by bms
in thread Noob Question by nick1984

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (7)
As of 2024-04-19 10:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found