Assume you have a tar file which contains this file:
$ tar tzf test.tar.gz /bin/mount
And you do not want to unpack it at this location but in the current directory, then use
$ zcat test.tar.gz | pax -pe -s :/bin/:./: -r
and voila, the mount binary is in your current directory.