On Sun, 17 Oct 2004 00:52:47 +0100, Rowan Collins rowan.collins@gmail.com wrote:
On Sat, 16 Oct 2004 22:55:00 +1000, Tim Starling ts4294967296@hotmail.com wrote:
In the real root directory there's symlinks to images in the other directories, apparently left there to avoid breaking URLs used in an earlier version of the software. Obviously tar has converted them from symlinks to duplicates. You can delete them.
Perhaps tar could be told to --exclude these, so they don't take up everyone's space and bandwidth - from my glance at 'info tar', something like this might do it:
tar --no-wildcards-match-slash --exclude "*.*"
Ahem! Better make that: tar -cf $FILE_OUT $IMG_PATH --no-wildcards-match-slash --exclude "$IMG_PATH/*.*"
[probably ;)]