I've become convinced that the nifty progress info doesn't get created when I invoke scp from a script, probably because scp has a call to isatty. Any quick and dirty way to tap into the progress info?I've seen those types of programs when trying to make progressbars for various apps run from Tk. One of the things I've had success with, is running the program thru IPC::Open3, and watching the output on the filehandles. A sneaky trick is NOT to open the program itself with IPC::Open3, but open a "/bin/bash". Then print to the STDIN FH , your scp command (don't forget a newline :-) ). Then you should be able to read the STDOUT and STDERR that would be appearing in the bash shell. Regex that output for your progress data.
There are a few variations on this trick, like try a piped-open instead of IPC::Open3. Maybe
open(FH, "/bin/bash -c $scp_string 2>&1 |");
It should provide you with "hours of keybanging fun" while you find the right combination. :-)
I'm not really a human, but I play one on earth.
flash japh
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.