Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Error while running PERL in windows

by Corion (Patriarch)
on Apr 12, 2016 at 07:05 UTC ( [id://1160193]=note: print w/replies, xml ) Need Help??


in reply to Error while running PERL in windows

Backslash found where operator expected at Test.pl line 2, near "Verit +as\"

So, what have you done to remedy that error in line 2?

Perl is not Powershell and not cmd.exe. The for command has a different syntax in Perl. See perlsyn.

You will have to use Perl syntax to write Perl code, this also goes for file paths.

If you want to read output from a subprocess, you can use backticks (see perlop and readline):

my $command = "C:\\Program Files\\Veritas\\Netbackup\\bin\\admincmd>bp +imagelist -A -media -hoursago 24>"; for my $line (`$command`) { ... };

Replies are listed 'Best First'.
Re^2: Error while running PERL in windows
by BrowserUk (Patriarch) on Apr 12, 2016 at 07:28 UTC

    Or just:

    for my $line ( `C:/Program Files/Veritas/Netbackup/bin/admincmd/bpimag +elist -A -media -hoursago 24` ) { ... };

    Which is simpler, and works. Note also:

    1. The change from '>' to '/' between the last element of the path and the command name.
    2. the absence of the '>' at the end of the command.

    Both of which are left-overs from his attempt to convert his original qx<> delimited unix command lines to windows equivalents.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority". I knew I was on the right track :)
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-03-29 10:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found