Hi,
I have one script (on a BSD box) grabbing real time data off a web page on a 1 minute cycle that can't be delayed or lost, which is then saved out to a file. Another script then uses the updated data from that file in between updates.
Is there an elegant way of telling the second script that the data is ready without actually opening the data file and checking if new data is present? I'm using flock() to prevent corruption of the data file.
TIA
Prion