Example:
$> tar -vxf something.tar
(normal output)
...
$> tar -xfv something.tar
tar: v: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
This is absurd, is it a bug or oversight in tar?
Example:
$> tar -vxf something.tar
(normal output)
...
$> tar -xfv something.tar
tar: v: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
This is absurd, is it a bug or oversight in tar?
There's nothing particularly absurd.
tar
supports multiple option styles, and the-f
option expects to be followed by the filename. If you use the old option style,tar
is a bit more lenient: