Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Monitoring directory contents

by Bloodnok (Vicar)
on Apr 08, 2014 at 11:06 UTC ( [id://1081488]=note: print w/replies, xml ) Need Help??


in reply to Monitoring directory contents

Would in not be simpler to let rsync take the strain e.g. (neither tried nor tested) ...
my @files = `rsync <rysnc_args_and_opts>`; system "<parser_name> @files";
which I guess you could just as easily implement in shell (again, neither tried nor tested) ...
for F in `rsync <rysnc_args_and_opts>`; do <parser_name> $F done
A user level that continues to overstate my experience :-))

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-24 04:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found