Why does `tar -xvfz` fail, but `tar xvfz` work?

tar has 3 types of syntax (according to this ):

  • long options (–file)
  • short options (-f)
  • old options (f)

For the old option syntax, all the letters must follow “tar” and must all fall into a single clump with no spaces. The order of the letters doesn’t really matter, so long as the arguments to those letters follow the same order after the clump of options.

This old way of writing tar options can surprise even experienced users. For example, the two commands:

 # tar cfz archive.tar.gz file
 # tar -cfz archive.tar.gz file

are quite different. The first example uses ‘archive.tar.gz’ as the value for option ‘f’ and recognizes the option ‘z’. The second example, however, uses ‘z’ as the value for option ‘f’ — probably not what was intended.

Old options are kept for compatibility with old versions of tar.

The command with a ‘-‘ is equivalent to

tar -czf archive.tar.gz file
tar -cf archive.tar.gz -z file
tar cf archive.tar.gz -z file

That’s the reason that your example is working without a “-” and not with “-“

Leave a Comment