I'm not sure if I understand exactly what you want to do, but you could use the cmd method of Net::Telnet. The code would look something like this:
use Net::Telnet (); my $tn = Net::Telnet->new(Timeout => 15, Prompt => '/host:\/home\/dir\ +>/'); my $host = 'some.host.xxx'; my $login = 'test'; my $passwd = 'testpw'; $tn->open($host); $tn->login($login, $passwd); my $msg = $tn->errmsg; if ($msg) { print "A system error was generated on the login attempt:\n"; print " '$msg'\n\n"; } my @list = $tn->cmd("./prog.p"); my $msg = $tn->errmsg; if ($msg) { print "A error occurred when attempting remote cmd './prog.p':\n"; print " '$msg'\n\n"; } my $ok = $tn->close; if (not $ok) { print "\nUnable to close Telnet connection to HOST: $host\n\n"; exit; }
Hope this helps.

If the code and the comments disagree, then both are probably wrong. -- Norm Schryer


In reply to Re: calling on files to execute remotely by jlongino
in thread calling on files to execute remotely by RayRay459

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.