SSH usually gives you full access to a shell, thus all the
commands you can use from the command line should
be avialable. Therefore, you can use something
like
ls to look
at all filenames in a directory
and choose the most recent name from them, or search
the output of ls, etc. (with the appropriate options)
to find
the file with the latest timestamp.
Or you might be able to run perl on the machine through
SSH to do this task for you and return the filename
over SSH to your script.
You may want to look at the modules
Net::SSH, Net::SCP, Net::SSH::Perl, IPC::Open2, and/or IPC::Open3.
(The latter two help you open a multidirectional
pipe to a program, the first two are interfaces
to the ssh and scp command line programs, and
Net::SSH::Perl is SSH implemented in perl.)
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.