Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Perl to run VxWorks shell Commands

by cdarke (Prior)
on Aug 17, 2011 at 05:14 UTC ( [id://920618]=note: print w/replies, xml ) Need Help??


in reply to Perl to run VxWorks shell Commands

Many shells have a specific command-line option to run single commands. Looking at various resources that Google gives, I can't see one for VxWorks, but you might have better luck asking on a VxWorks site. All the hints I found were about running within the shell, not feeding a command from the outside.

It could be that the VxWorks shell reads commands from its standard input. If it does then you could pipe commands into it, for example:
open(my $Vx, '|-', 'windsh') or die "windsh; $!"; print $Vx "Some command\n"; close $Vx;
See also perlipc
Alternatively you might be able to write the commands to a script file and:
my @output = qx(windsh < scriptfile);
But note, this is just something you might try, chances are that VxWorks does not support what you want to do.

Log In?
Username:
Password:

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

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

    No recent polls found