You probably want to take a look at the
Expect
module, which will let you handle the program as if you were
typing it from the command line. Generally, sleeping like
that isn't a safe way to go, as you have no idea whether
the program is ready for input or not, and no way of
verifying that the input it's prompting for is the input
you're about to give it. Expect will let you wait for a
certain prompt, such as (on my box)
(current) UNIX password:
Alternatively, you could take a look at
IO::Tty,
and use it to set up a pty, which will make the passwd
program behave as if you were sitting at a terminal, but
this is basically what Expect is doing behind the scenes.
The problem you were running into may be related to OS
buffering issues. You might try something like (code taken
from Programming Perl):
select((select(ADD), $| = 1)[0]);
which would turn on autoflushing on the ADD filehandle.
I'd still recommend using Expect though, as it provides a
much more robust and flexible way to accomplish your goal.
Update: I should have looked around a bit
for this first, but you also might want to take a look at
Unix::PasswdFile and/or Passwd::Solaris.
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.