In the command
tar-cvjf foo.tbz a b c
, what are a
, b
, and c
?
- File names to be added to the archive
- Matching operators; anything starting with a, b, or c will be added
- a is the directory that will be prepended to files; b and c are files inside it
- Extra flags passed to tar
- Nothing;
-cvjf
only expects one parameter
Please login or Register to submit your answer