| Re: software advice needed Dont' know if this sort of thing exists in MS land or not as I haven't been there in about 8 years, but in the UNIX world, I'd setup a cron job to run every few minutes to execute a script to rsync the new images to the other systems.
It'd be about 5 lines of code with some variable settings.
<font class="small">Code:</font><hr /><pre>#!/bin/bash
hosts='system1 system2 system3' # list of hosts to sync to
imgdir='/path/to/images/' # assuming the paths are the same on each box
for host in $hosts
do
rsync -avz $imgdir $host:$imgdir
done </pre><hr />
The crontab entry would look like
# Sync the image directories every 2 minutes
*/2 * * * * $HOME/bin/sync_imgdir.ksh
Good luck White Balance so easy, even our 5 year old can do it.- Melissa Strickland |