exclude absolute paths when extracting Tar file?

Hi,
How do I extract data from TAR excluding absolute paths for Tar? (Solaris)

Thanks

You can use pax which allows on the fly path substitution with its -s option.

Solaris 10 also comes with GNU tar as /usr/sfw/bin/gtar which strips leading slashes by default.

Thanks a lot!