Rather than giving a command like tar c
/home/mike, do something like:
% cd /
% tar c home/mike
Or, even more elegant, use -C on the
tar command line:
% tar c -C /home/mike .
This command tells tar to cd to
the directory /home/mike before creating an
archive of . (the current directory). If you want to archive several
directories, you can use several -C options:
% tar c -C /home/mike ./docs -C /home/susan ./test
This command archives mike's
docs directory and
susan's
test directory. [Note that it uses the
subdirectory names, as we did in the second-previous example. When
the files are extracted, they'll be restored to
separate subdirectories, instead of all being mixed into the same .
(current) directory. -- JP]
-- ML
 |  |  |
38.10. Using Wildcards with tar |  | 38.12. Getting tar's Arguments in the Right Order |