I have a large directory of files and I would like to maintain a single compressed tar archive that I can server over http containing all the files which is brought up to date once each day.
Many of the files will not change day-to-day and I'd like to avoid hours of processor time compressing the same files every day.
tar "cannot update compressed archives", so tar uj
won't help.
Is there a clever way to do this?