Suppose I have a tar that contains:
/                # Root directory
/level1/         # A sub directory
/level1/a.file
/level1/b.file
/level1/...      # The rest
How can I do something like tar -xf that would untar the contents level1/ like this:
/a.file
/b.file
/...       # The rest