It appears I am missing something about the way this works as I am not able to implement it.
I added the backticks and it appears to correctly capture the stdout, I tried the following:
$script2 = `script1 arg1 arg2 arg3 arg4`;
$working_dir = &getWorkDir($script2);
sub getWorkDir {
$text = @_;
while($text) {
if ($_ =~ ".*user_name.*"){
my $dir = $_;
}
return $dir;
}
This appears to never enter the if statement even.
I also tried using @script2 to store the output and then used @text in the sub procedure and then loop through it using foreach.
That way actually managed to enter the if statement once the line containing the directory was reached but still $dir was left empty.
I don't understand why the $dir does not get assigned a value. When I check in the debugger once I enter the if statement the $_ actually contains the line but I still can't assign it to $dir and return it.
What am I missing here?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.