Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: execute vbscript code inline in Perl script

by slick.user (Acolyte)
on Sep 08, 2017 at 16:40 UTC ( [id://1198962]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $final = qx("cscript out2.vbs");
    print STDOUT "Final: $final\n";
    
  2. or download this
    my $final2 = system("cscript out2.vbs");
    print STDOUT "Final2: $final2\n";
    
  3. or download this
        Dim num1, num2, final, str
        num1 = 30
    ...
        'MSGBOX str & final
        WScript.Quit(final)
        'Wscript.Echo final
    

Log In?
Username:
Password:

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

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

    No recent polls found